Skip to content

Commit

Permalink
Update refs to Minio images (#5318)
Browse files Browse the repository at this point in the history
By default the Minio images are pulled from docker.io, which makes the
CI fail when the pull limit is reached. Use quay.io instead.
  • Loading branch information
enarha authored Jan 20, 2025
1 parent 56f9dc0 commit ca3688c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion components/pipeline-service/development/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ commonAnnotations:
argocd.argoproj.io/sync-options: SkipDryRunOnMissingResource=true

resources:
- github.com/minio/operator?ref=v5.0.15
- github.com/minio/operator?ref=v5.0.15 # when updating the tag, update also the patches below
- main-pipeline-service-configuration.yaml
- dev-only-pipeline-service-storage-configuration.yaml
- ../base/rbac
Expand Down Expand Up @@ -39,6 +39,9 @@ patches:
path: /spec/template/spec/containers/0/securityContext/runAsUser
- op: remove
path: /spec/template/spec/containers/0/securityContext/runAsGroup
- op: replace
path: /spec/template/spec/containers/0/image
value: "quay.io/minio/operator:v5.0.15"
- target:
kind: Deployment
name: console
Expand All @@ -60,3 +63,6 @@ patches:
- op: add
path: /spec/template/spec/containers/0/securityContext/readOnlyRootFilesystem
value: true
- op: replace
path: /spec/template/spec/containers/0/image
value: "quay.io/minio/operator:v5.0.15"

0 comments on commit ca3688c

Please sign in to comment.