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

Update module chart and resources to v0.6.4 #707

Merged
merged 1 commit into from
May 27, 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
4 changes: 2 additions & 2 deletions module-chart/chart/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
appVersion: v0.6.3
appVersion: v0.6.4
description: A Helm chart for SAP BTP Operator for Kubernetes
name: sap-btp-operator
version: v0.6.3
version: v0.6.4
13 changes: 8 additions & 5 deletions module-chart/chart/templates/configmap.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: sap-btp-operator-config
namespace: {{.Release.Namespace}}
labels:
"services.cloud.sap.com/managed-by-sap-btp-operator": "true"
data:
{{- if .Values.cluster.id }}
CLUSTER_ID: {{ .Values.cluster.id }}
Expand All @@ -16,13 +22,10 @@ data:
MANAGEMENT_NAMESPACE: {{.Release.Namespace}}
{{- end }}
RELEASE_NAMESPACE: {{.Release.Namespace}}
ENABLE_LIMITED_CACHE: {{ .Values.manager.enable_limited_cache | quote }}
ALLOW_CLUSTER_ACCESS: {{ .Values.manager.allow_cluster_access | quote }}
{{- if not .Values.manager.allow_cluster_access }}
{{- if gt (len .Values.manager.allowed_namespaces) 0 }}
ALLOWED_NAMESPACES: {{ join "," .Values.manager.allowed_namespaces }}
{{- end }}
{{- end }}
kind: ConfigMap
metadata:
name: sap-btp-operator-config
namespace: {{.Release.Namespace}}
{{- end }}
2 changes: 2 additions & 0 deletions module-chart/chart/templates/secret.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ kind: Secret
metadata:
name: sap-btp-service-operator
namespace: {{ .Release.Namespace }}
labels:
"services.cloud.sap.com/managed-by-sap-btp-operator": "true"
type: Opaque
data:
{{- if .Values.manager.secret.b64encoded }}
Expand Down
3 changes: 2 additions & 1 deletion module-chart/chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ manager:
req_memory_limit: 20Mi
req_cpu_limit: 100m
allow_cluster_access: true
enable_limited_cache: false
allowed_namespaces: []
replica_count: 2
enable_leader_election: true
logger_use_dev_mode: true
management_namespace:
image:
repository: ghcr.io/sap/sap-btp-service-operator/controller
tag: v0.6.3
tag: v0.6.4
sha: ""
secret:
b64encoded: false
Expand Down
13 changes: 8 additions & 5 deletions module-resources/apply/configmap.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
---
# Source: sap-btp-operator/templates/configmap.yml
apiVersion: v1
data:
CLUSTER_ID: 96397a6d-5099-4c11-957e-2376db99681f
MANAGEMENT_NAMESPACE: kyma-system
RELEASE_NAMESPACE: kyma-system
ALLOW_CLUSTER_ACCESS: "true"
kind: ConfigMap
metadata:
name: sap-btp-operator-config
namespace: kyma-system
labels:
"services.cloud.sap.com/managed-by-sap-btp-operator": "true"
data:
CLUSTER_ID: c80ef6ba-014b-4aba-8169-2a9073e1bcd2
MANAGEMENT_NAMESPACE: kyma-system
RELEASE_NAMESPACE: kyma-system
ENABLE_LIMITED_CACHE: "false"
ALLOW_CLUSTER_ACCESS: "true"
4 changes: 2 additions & 2 deletions module-resources/apply/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
template:
metadata:
annotations:
checksum/config: 166c56b4fbf139b8bfe09d7ab04931ae1ea0ad40a23f498ff4cdbc9e191f4b5e
checksum/config: e38278354b71f5d00c466c3814ad25775c1b76767186e6d78f40777b95e2b80f
sidecar.istio.io/inject: "false"
labels:
control-plane: controller-manager
Expand Down Expand Up @@ -52,7 +52,7 @@ spec:
- secretRef:
name: sap-btp-operator-clusterid
optional: true
image: "ghcr.io/sap/sap-btp-service-operator/controller:v0.6.3"
image: "ghcr.io/sap/sap-btp-service-operator/controller:v0.6.4"
imagePullPolicy: IfNotPresent
name: manager
ports:
Expand Down
2 changes: 2 additions & 0 deletions module-resources/apply/secret.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ kind: Secret
metadata:
name: sap-btp-service-operator
namespace: kyma-system
labels:
"services.cloud.sap.com/managed-by-sap-btp-operator": "true"
type: Opaque
data:
clientid: ""
Expand Down
2 changes: 1 addition & 1 deletion module-resources/excluded/to-exclude.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
name: pre-delete-job
namespace: kyma-system
labels:
release: v0.6.3
release: v0.6.4
annotations:
"helm.sh/hook": pre-delete
"helm.sh/hook-weight": "0"
Expand Down
Loading