Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Downgrade Dapr Version due to deadlocks in Dapr #98

Merged
merged 1 commit into from
Jul 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ dependencies:
repository: https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/charts
condition: subcharts.smb.enabled
- name: dapr
version: 1.13.5
version: 1.11.6
repository: https://dapr.github.io/helm-charts
condition: subcharts.dapr.enabled
6 changes: 0 additions & 6 deletions chart/templates/_dapr.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,9 @@ dapr.io/app-protocol: "grpc"
dapr.io/app-port: "50051"
dapr.io/log-level: {{ $globalValues.dapr.logLevel | quote }}
dapr.io/enable-api-logging: "true"
dapr.io/app-health-probe-interval: "5"
dapr.io/app-health-probe-timeout: "3000"
dapr.io/app-health-threshold: "100"
{{- if $serviceValues.debugShim }}
dapr.io/enable-app-health-check: "true"
dapr.io/sidecar-liveness-probe-delay-seconds: "2"
dapr.io/sidecar-liveness-probe-period-seconds: "2"
dapr.io/sidecar-liveness-probe-threshold: "9999"
{{- else }}
dapr.io/enable-app-health-check: {{ $serviceValues.appHealthCheck | quote }}
{{- end }}
{{- end }}
8 changes: 0 additions & 8 deletions chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,6 @@ services:
appConfig:
- name: messageResponseTimeoutMS
value: 15000
appHealthCheck: false
appName: platform-mts
buildService:
dockerFile: Dockerfile.buildsvc.app
Expand All @@ -199,7 +198,6 @@ services:
workingDir: /workspaces/platform-mts
deployment:
appName: platform-deployment
appHealthCheck: false
buildService:
dockerFile: Dockerfile.buildsvc.app
contextDir: build/dotnet
Expand Down Expand Up @@ -256,7 +254,6 @@ services:
- name: enableRoutingToMTS
value: true
appName: vth
appHealthCheck: false
buildService:
dockerFile: Dockerfile.buildsvc.app
contextDir: build/dotnet
Expand All @@ -281,7 +278,6 @@ services:
- name: messageResponseTimeoutMS
value: 15000
appName: hostsvc-sensor
appHealthCheck: false
buildService:
dockerFile: Dockerfile.buildsvc.app
contextDir: build/dotnet
Expand Down Expand Up @@ -309,7 +305,6 @@ services:
- name: allowLinksToDeploymentSvc
value: false
appName: hostsvc-link
appHealthCheck: false
buildService:
dockerFile: Dockerfile.buildsvc.app
contextDir: build/dotnet
Expand Down Expand Up @@ -337,7 +332,6 @@ services:
- name: writeTelemetryToLog
value: true
appName: hostsvc-logging
appHealthCheck: false
buildService:
dockerFile: Dockerfile.buildsvc.app
contextDir: build/dotnet
Expand All @@ -356,7 +350,6 @@ services:
workingDir: /workspaces/hostsvc-logging
position:
appName: hostsvc-position
appHealthCheck: false
buildService:
dockerFile: Dockerfile.buildsvc.app
contextDir: build/dotnet
Expand Down Expand Up @@ -406,7 +399,6 @@ services:
serviceAccount:
enabled: false
appContext: null
appHealthCheck: false
appName: payloadappTemplate
appGroup: payloadappGroup
correlationId: null
Expand Down
10 changes: 5 additions & 5 deletions config/0_spacesdk-base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@ config:
charts:
- group: dapr
enabled: true
version: 1.13.5
version: 1.11.6
namespace: dapr-system
containers:
- registry: ghcr.io
repository: dapr/daprd
tag: 1.13.5
tag: 1.11.6
- registry: ghcr.io
repository: dapr/sentry
tag: 1.13.5
tag: 1.11.6
- registry: ghcr.io
repository: dapr/injector
tag: 1.13.5
tag: 1.11.6
- registry: ghcr.io
repository: dapr/operator
tag: 1.13.5
tag: 1.11.6
- group: smb
enabled: false
version: 1.15.0
Expand Down
Loading