mirror of
https://github.com/bitnami/charts.git
synced 2026-03-15 06:47:24 +08:00
* added objectstorageConfig to the sidecar container * Bumped version and added documentation of the added values. * Fixed indentation of environment variables * Rename ConfigMap to Secret and added to production-values * Fixed missing space * added the metallb chart * Update bitnami/metallb/Chart.yaml Co-Authored-By: Carlos Rodríguez Hernández <carrodher1179@gmail.com> * Update bitnami/metallb/README.md Co-Authored-By: Carlos Rodríguez Hernández <carrodher1179@gmail.com> * Update bitnami/metallb/templates/tests/test-connection.yaml Co-Authored-By: Carlos Rodríguez Hernández <carrodher1179@gmail.com> * Update bitnami/metallb/values.yaml Co-Authored-By: Carlos Rodríguez Hernández <carrodher1179@gmail.com> * Update bitnami/metallb/values.yaml Co-Authored-By: Carlos Rodríguez Hernández <carrodher1179@gmail.com> * Update README.md * Update bitnami/metallb/README.md Co-Authored-By: Carlos Rodríguez Hernández <carrodher1179@gmail.com> * fixed `---` * Added templating * Fixed some bugs and added securityContext also bumped metallb appVersion * Bumped versions * Added metallb templates * Added metallb 0.9.2 changes to the chart * Added metallb 0.9.2 changes to the chart * Added missing EOL * Fixed the appVersion * added secret autogeneration for the members to join * Bumped version accordingly to cellebyte/helm * Fixed missing EOL * Bumped templates to the new versiona and bumped metallb version * Fixed some template behaviour * Bumped chart version * Bumped image tags to use the latest version * Run the container as Root because the speaker needs the capability to use root specific network features * fixed typo and email * use bitnami images * added app.kubernetes.io/component app.kubernetes.io/app * Use nindent * Fixed nindent and some old labels * added more configurable options * Fixed nindent stuff * Fixed trim-suffix * added templates to handle secrets and configmaps the proper way * fixed wrong documentation * Fixed template executing if configInline defined * fixed the psps * Make psp also autogenerated * remove one eol * Added eol * Added the missing doc pieces * added ref for securityContext * Fixed securityContext * added some NOTES after the deployment Co-authored-by: Carlos Rodríguez Hernández <carrodher1179@gmail.com>
14 lines
406 B
YAML
14 lines
406 B
YAML
{{- if not .Values.speaker.secretName }}
|
|
apiVersion: v1
|
|
data:
|
|
secretkey: {{ randAlphaNum 256 | b64enc | quote }}
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ include "metallb.fullname" . }}-memberlist
|
|
labels: {{- include "metallb.labels" . | nindent 4 }}
|
|
app.kubernetes.io/component: speaker
|
|
annotations:
|
|
"helm.sh/hook": "pre-install"
|
|
"helm.sh/hook-delete-policy": "before-hook-creation"
|
|
{{- end }}
|