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

updated helm template to work with CICD automation #2365

Merged
merged 2 commits into from
Feb 4, 2025
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
5 changes: 2 additions & 3 deletions helm-cluster-scoped/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,5 @@ imageRegistryNamespaceOperand: cpopen/cpfs

# other configuration you think you might need for your operator
# following are examples, not required:
operatorNamespace: ibm-common-services
servicesNamespace: service
operatorImage: ibm-common-service-operator
operatorNamespace: ""
servicesNamespace: ""
2 changes: 1 addition & 1 deletion helm/templates/operator-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ spec:
- s390x
containers:
- name: ibm-common-service-operator
image: {{ .Values.imagePullPrefix}}/{{ .Values.imageRegistryNamespaceOperator}}/{{ .Values.operatorImage }}:{{ .Values.operatorVersion }}
image: {{ .Values.imagePullPrefix}}/{{ .Values.imageRegistryNamespaceOperator}}/common-service-operator:4.11.0
command:
- /manager
env:
Expand Down
7 changes: 2 additions & 5 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,10 @@ imagePullSecret: ibm-entitlement-key
imageRegistryNamespaceOperator: cpopen
imageRegistryNamespaceOperand: cpopen/cpfs

operatorVersion: 4.11.0

# other configuration you think you might need for your operator
# following are examples, not required:
operatorNamespace: <operator namespace>
servicesNamespace: <services namespace>
operatorImage: common-service-operator
operatorNamespace: ""
servicesNamespace: ""

# CR configurations

Expand Down
Loading