Compare commits
17 Commits
main
...
spire-0.9.
Author | SHA1 | Date |
---|---|---|
|
8f7c9ba6a4 | |
|
622d5c9caf | |
|
2620c8357a | |
|
49025cd3db | |
|
ee0a16bdc8 | |
|
0e5d2817fa | |
|
b628b08e16 | |
|
191d1f05d8 | |
|
f7403f45cb | |
|
7a67caca5c | |
|
e9de49e93b | |
|
949d34828e | |
|
3f044af7b9 | |
|
545059c316 | |
|
a1b19dd215 | |
|
088f4f3676 | |
|
37e469c725 |
|
@ -2,12 +2,12 @@
|
|||
{
|
||||
"name": "kube-prometheus-stack",
|
||||
"repo": "https://prometheus-community.github.io/helm-charts",
|
||||
"version": "46.6.0"
|
||||
"version": "46.8.0"
|
||||
},
|
||||
{
|
||||
"name": "cert-manager",
|
||||
"repo": "https://charts.jetstack.io",
|
||||
"version": "v1.12.1"
|
||||
"version": "v1.12.2"
|
||||
},
|
||||
{
|
||||
"name": "ingress-nginx",
|
||||
|
@ -17,11 +17,11 @@
|
|||
{
|
||||
"name": "mysql",
|
||||
"repo": "https://charts.bitnami.com/bitnami",
|
||||
"version": "9.10.1"
|
||||
"version": "9.10.4"
|
||||
},
|
||||
{
|
||||
"name": "postgresql",
|
||||
"repo": "https://charts.bitnami.com/bitnami",
|
||||
"version": "12.5.6"
|
||||
"version": "12.5.7"
|
||||
}
|
||||
]
|
||||
|
|
|
@ -29,8 +29,6 @@ spire-server:
|
|||
password: ${DBPW}
|
||||
host: mysql
|
||||
port: 3306
|
||||
options:
|
||||
- parseTime: true
|
||||
EOF
|
||||
|
||||
helm install mysql mysql --namespace "spire-server" --version "$VERSION_MYSQL" --repo "$HELM_REPO_MYSQL" \
|
||||
|
|
|
@ -3,7 +3,7 @@ name: spire
|
|||
description: >
|
||||
A Helm chart for deploying the complete Spire stack including: spire-server, spire-agent, spiffe-csi-driver, spiffe-oidc-discovery-provider and spire-controller-manager.
|
||||
type: application
|
||||
version: 0.9.0
|
||||
version: 0.9.1
|
||||
appVersion: "1.7.0"
|
||||
keywords: ["spiffe", "spire", "spire-server", "spire-agent", "oidc", "spire-controller-manager"]
|
||||
home: https://github.com/spiffe/helm-charts/tree/main/charts/spire
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
<!-- This README.md is generated. Please edit README.md.gotmpl -->
|
||||
|
||||
  
|
||||
  
|
||||
[](https://github.com/spiffe/spiffe/blob/main/MATURITY.md#development)
|
||||
|
||||
A Helm chart for deploying the complete Spire stack including: spire-server, spire-agent, spiffe-csi-driver, spiffe-oidc-discovery-provider and spire-controller-manager.
|
||||
|
|
|
@ -114,9 +114,8 @@ Create the name of the service account to use
|
|||
{{- $lst = append $lst $entry }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- if gt (len $lst) 0 }}
|
||||
{{- printf "?%s" (join "&" $lst) }}
|
||||
{{- end }}
|
||||
{{- $lst = append $lst "parseTime=true" }}
|
||||
{{- printf "?%s" (join "&" (uniq $lst)) }}
|
||||
{{- end }}
|
||||
|
||||
{{- define "spire-server.config-postgresql-options" }}
|
||||
|
|
|
@ -43,11 +43,11 @@ spec:
|
|||
securityContext:
|
||||
{{- toYaml .Values.podSecurityContext | nindent 8 }}
|
||||
initContainers:
|
||||
{{- if and .Values.upstreamAuthority.certManager.enabled .Values.upstreamAuthority.certManager.createCA }}
|
||||
{{- if and .Values.upstreamAuthority.certManager.enabled .Values.upstreamAuthority.certManager.ca.create }}
|
||||
- name: wait
|
||||
securityContext:
|
||||
{{- toYaml .Values.securityContext | nindent 12 }}
|
||||
image: {{ template "spire-server.kubectl-image" (dict "appVersion" $.Chart.AppVersion "image" .Values.controllerManager.validatingWebhookConfiguration.upgradeHook.image "global" .Values.global "KubeVersion" .Capabilities.KubeVersion.Version) }}
|
||||
image: {{ template "spire-lib.kubectl-image" (dict "appVersion" $.Chart.AppVersion "image" .Values.tools.kubectl.image "global" .Values.global "KubeVersion" .Capabilities.KubeVersion.Version) }}
|
||||
args:
|
||||
- wait
|
||||
- --namespace
|
||||
|
@ -56,7 +56,7 @@ spec:
|
|||
- --for=condition=ready
|
||||
- issuer
|
||||
- {{ include "spire-server.fullname" $ }}
|
||||
imagePullPolicy: {{ .Values.controllerManager.validatingWebhookConfiguration.upgradeHook.image.pullPolicy }}
|
||||
imagePullPolicy: {{ .Values.tools.kubectl.image.pullPolicy }}
|
||||
{{- end }}
|
||||
{{- if gt (len .Values.initContainers) 0 }}
|
||||
{{- toYaml .Values.initContainers | nindent 8 }}
|
||||
|
|
|
@ -6,5 +6,3 @@ spire-server:
|
|||
host: mysql
|
||||
port: 3306
|
||||
username: spire
|
||||
options:
|
||||
- parseTime: true
|
||||
|
|
Loading…
Reference in New Issue