Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

Commit

Permalink
fix: bump canary-checker version to 0.38.98
Browse files Browse the repository at this point in the history
  • Loading branch information
paddatrapper committed Apr 12, 2022
1 parent 4890ce8 commit 66321ef
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 9 deletions.
10 changes: 6 additions & 4 deletions manifests/canary-checker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ spec:
matchLabels:
app.kubernetes.io/name: canary-checker
control-plane: canary-checker
serviceName: canary-checker
template:
metadata:
annotations:
Expand Down Expand Up @@ -181,8 +182,9 @@ spec:
- name: DOCKER_API_VERSION
value: "1.39"
- name: DB_URL
value: embedded:///opt/database/
image: docker.io/flanksource/canary-checker:{{.canaryChecker.version | default "v0.38.87" }}
value: embedded:///opt/database/data/
image: docker.io/flanksource/canary-checker:{{ .canaryChecker.version | default "v0.38.98" }}
imagePullPolicy: IfNotPresent
name: canary-checker
ports:
- containerPort: 8080
Expand All @@ -198,8 +200,6 @@ spec:
capabilities:
add:
- CAP_NET_RAW
privileged: true
runAsUser: 0
volumeMounts:
- mountPath: /var/run/docker.sock
name: dockersock
Expand All @@ -209,6 +209,8 @@ spec:
name: canarychecker-database
- mountPath: /etc/podinfo
name: podinfo
securityContext:
fsGroup: 1000
serviceAccountName: canary-checker-sa
volumes:
- hostPath:
Expand Down
2 changes: 1 addition & 1 deletion manifests/upstream/canary-checker/base/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace: platform-system

images:
- name: docker.io/flanksource/canary-checker:latest
newTag: '{{.canaryChecker.version | default "v0.38.87" }}'
newTag: '{{ .canaryChecker.version | default "v0.38.98" }}'

patchesStrategicMerge:
- |-
Expand Down
2 changes: 1 addition & 1 deletion manifests/upstream/canary-checker/helm/chart.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
repo: https://flanksource.github.io/charts
chart_name: canary-checker
version: 0.38.87
version: 0.38.98
namespace: platform-system
3 changes: 0 additions & 3 deletions pkg/phases/canary/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,5 @@ func Deploy(p *platform.Platform) error {
return nil
}

if p.CanaryChecker.Version == "" {
p.CanaryChecker.Version = "v0.38.87"
}
return p.ApplySpecs(v1.NamespaceAll, specs...)
}
2 changes: 2 additions & 0 deletions test/managed.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ thanos:
bucket: thanos
canaryChecker:
version: v0.38.87
persistence:
capacity: 1Gi
monitoring:
disabled: false
prometheus:
Expand Down
2 changes: 2 additions & 0 deletions test/monitoring.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ thanos:
bucket: thanos
canaryChecker:
version: v0.38.87
persistence:
capacity: 1Gi
monitoring:
disabled: false
prometheus:
Expand Down
2 changes: 2 additions & 0 deletions test/platform.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ platformOperator:
- foo.flanksource.com/baz
canaryChecker:
version: v0.38.87
persistence:
capacity: 1Gi
test:
exclude:
- dex
Expand Down
2 changes: 2 additions & 0 deletions test/postgres.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ templateOperator:
syncPeriod: 15s
canaryChecker:
version: v0.38.87
persistence:
capacity: 1Gi
minio:
version: RELEASE.2020-09-02T18-19-50Z
access_key: minio
Expand Down

0 comments on commit 66321ef

Please sign in to comment.