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

[manila-nanny] add secrets injector support #7478

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions openstack/manila-nanny/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
dependencies:
- name: utils
repository: oci://keppel.eu-de-1.cloud.sap/ccloud-helm
version: 0.12.3
version: 0.19.7
- name: owner-info
repository: oci://keppel.eu-de-1.cloud.sap/ccloud-helm
version: 0.2.3
version: 1.0.0
- name: linkerd-support
repository: oci://keppel.eu-de-1.cloud.sap/ccloud-helm
version: 0.1.4
digest: sha256:2b317e783b070ad6f69851e8ab51378e78ebcbf11e3f7795a7debfd2d2dd93dc
generated: "2024-04-12T15:51:31.605805+02:00"
version: 1.1.0
digest: sha256:b880d9ffee23c850d1c1c12d2c582054ee9376cb704696c52867a2107a3ddedb
generated: "2024-11-27T15:41:18.543765+01:00"
8 changes: 4 additions & 4 deletions openstack/manila-nanny/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
description: Manila Nanny - sync descrepancies from NetApp filers to Manila DB
name: manila-nanny
type: application
version: 0.2.0
version: 0.3.0

appVersion: "0.0.0"
sources:
Expand All @@ -11,10 +11,10 @@ sources:
dependencies:
- name: utils
repository: oci://keppel.eu-de-1.cloud.sap/ccloud-helm
version: ~0.12.1
version: ~0.19.6
- name: owner-info
repository: oci://keppel.eu-de-1.cloud.sap/ccloud-helm
version: ~0.2.0
version: ~1.0.0
- name: linkerd-support
repository: oci://keppel.eu-de-1.cloud.sap/ccloud-helm
version: ~0.1.3
version: ~1.1.0
4 changes: 2 additions & 2 deletions openstack/manila-nanny/templates/secrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ metadata:
ccloud/support-group: compute-storage-api
ccloud/service: manila
data:
manila_netapp_api_username: {{ required ".Values.netapp.username" .Values.netapp.username | b64enc }}
manila_netapp_api_password: {{ required ".Values.netapp.password" .Values.netapp.password | b64enc }}
manila_netapp_api_username: {{ required ".Values.netapp.username" .Values.netapp.username | include "resolve_secret" | b64enc }}
manila_netapp_api_password: {{ required ".Values.netapp.password" .Values.netapp.password | include "resolve_secret" | b64enc }}
{{- if .Values.promath }}
{{- if .Values.promauth.ssoCert }}
client_cert: {{ .Values.promauth.ssoCert | b64enc }}
Expand Down