Make spire agent server address configurable
If your server is not in the same namespace or cluster as the agent, you need a config option to specify where it is. Signed-off-by: Kevin Fox <[email protected]>
This commit is contained in:
@@ -35,6 +35,7 @@ A Helm chart to install the SPIRE agent.
|
|||||||
| priorityClassName | string | `""` | Priority class assigned to daemonset pods |
|
| priorityClassName | string | `""` | Priority class assigned to daemonset pods |
|
||||||
| resources | object | `{}` | |
|
| resources | object | `{}` | |
|
||||||
| securityContext | object | `{}` | |
|
| securityContext | object | `{}` | |
|
||||||
|
| server.address | string | `""` | |
|
||||||
| server.port | int | `8081` | |
|
| server.port | int | `8081` | |
|
||||||
| serviceAccount.annotations | object | `{}` | |
|
| serviceAccount.annotations | object | `{}` | |
|
||||||
| serviceAccount.create | bool | `true` | |
|
| serviceAccount.create | bool | `true` | |
|
||||||
|
|||||||
@@ -72,3 +72,11 @@ Create the name of the service account to use
|
|||||||
{{- printf "%s/%s" .image.registry .image.repository -}}
|
{{- printf "%s/%s" .image.registry .image.repository -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
|
{{- define "spire-agent.server-address" }}
|
||||||
|
{{- if .Values.server.address }}
|
||||||
|
{{- .Values.server.address }}
|
||||||
|
{{- else }}
|
||||||
|
{{ .Release.Name }}-server
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ data:
|
|||||||
agent {
|
agent {
|
||||||
data_dir = "/run/spire"
|
data_dir = "/run/spire"
|
||||||
log_level = {{ .Values.logLevel | quote }}
|
log_level = {{ .Values.logLevel | quote }}
|
||||||
server_address = "{{ .Release.Name }}-server"
|
server_address = {{ include "spire-agent.server-address" . | trim | quote }}
|
||||||
server_port = {{ .Values.server.port | quote }}
|
server_port = {{ .Values.server.port | quote }}
|
||||||
socket_path = {{ include "spire.agent-socket-path" . | quote }}
|
socket_path = {{ include "spire.agent-socket-path" . | quote }}
|
||||||
trust_bundle_path = "/run/spire/bundle/bundle.crt"
|
trust_bundle_path = "/run/spire/bundle/bundle.crt"
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ spec:
|
|||||||
# from https://github.com/vishnubob/wait-for-it
|
# from https://github.com/vishnubob/wait-for-it
|
||||||
image: {{ template "spire-agent.image" .Values.waitForIt }}
|
image: {{ template "spire-agent.image" .Values.waitForIt }}
|
||||||
imagePullPolicy: {{ .Values.waitForIt.image.pullPolicy }}
|
imagePullPolicy: {{ .Values.waitForIt.image.pullPolicy }}
|
||||||
args: ["-t", "30", "-h", "{{ .Release.Name }}-server", "-p", {{ .Values.server.port | quote }}]
|
args: ["-t", "30", "-h", "{{ include "spire-agent.server-address" . | trim }}", "-p", {{ .Values.server.port | quote }}]
|
||||||
resources:
|
resources:
|
||||||
{{- toYaml .Values.waitForIt.resources | nindent 12 }}
|
{{- toYaml .Values.waitForIt.resources | nindent 12 }}
|
||||||
{{- if gt (len .Values.initContainers) 0 }}
|
{{- if gt (len .Values.initContainers) 0 }}
|
||||||
|
|||||||
@@ -58,6 +58,7 @@ trustDomain: example.org
|
|||||||
bundleConfigMap: spire-bundle
|
bundleConfigMap: spire-bundle
|
||||||
|
|
||||||
server:
|
server:
|
||||||
|
address: ""
|
||||||
port: 8081
|
port: 8081
|
||||||
|
|
||||||
healthChecks:
|
healthChecks:
|
||||||
|
|||||||
Reference in New Issue
Block a user