Skip to content

Commit

Permalink
Update primary site to default to beta stream service
Browse files Browse the repository at this point in the history
  • Loading branch information
bennetthardwick committed Jan 20, 2025
1 parent a0af4cd commit ea6152f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ spec:
{{- end }}
containers:
- name: stream-service
image: {{ .Values.streamService.deployment.image }}:{{ .Chart.AppVersion }}
## If the betaOptOut flag is enabled, fall back to the legacy stream server image
{{- $image := ternary "legacyImage" "image" .Values.streamService.betaOptOut }}
image: {{ index .Values.streamService.deployment $image }}:{{ .Chart.AppVersion }}
resources:
requests:
cpu: {{ .Values.streamService.deployment.resources.requests.cpu }}
Expand Down
5 changes: 4 additions & 1 deletion charts/primary-site/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -133,10 +133,13 @@ inboxListener:
pollingInterval: 30

streamService:
# This chart defaults to a new version of the stream server. To disable this set the `betaOptOut` flag to true.
betaOptOut: false
service:
annotations: {}
deployment:
image: "us-central1-docker.pkg.dev/foxglove-images/images/stream-server"
image: "us-central1-docker.pkg.dev/foxglove-images/images/beta-stream-server"
legacyImage: "us-central1-docker.pkg.dev/foxglove-images/images/stream-server"
replicas: 1
initContainers: []
extraVolumes: []
Expand Down

0 comments on commit ea6152f

Please sign in to comment.