-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2457 from Hello-Heart/support-chart-extra-manifests
chart: support deploying additional kubernetes manifests
- Loading branch information
Showing
5 changed files
with
182 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{{- if .Values.extraManifests }} | ||
{{- range $manifest := .Values.extraManifests }} | ||
--- | ||
{{- tpl $manifest $ | nindent 0 }} | ||
{{- end }} | ||
{{- end }} |
138 changes: 138 additions & 0 deletions
138
charts/headlamp/tests/expected_templates/extra-manifests.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
--- | ||
# Source: headlamp/templates/serviceaccount.yaml | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
name: headlamp | ||
labels: | ||
helm.sh/chart: headlamp-0.25.0 | ||
app.kubernetes.io/name: headlamp | ||
app.kubernetes.io/instance: headlamp | ||
app.kubernetes.io/version: "0.25.1" | ||
app.kubernetes.io/managed-by: Helm | ||
--- | ||
# Source: headlamp/templates/secret.yaml | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: oidc | ||
type: Opaque | ||
data: | ||
--- | ||
# Source: headlamp/templates/extra-manifests.yaml | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: dummy-configmap | ||
data: | ||
key1: value1 | ||
key2: value2 | ||
--- | ||
# Source: headlamp/templates/extra-manifests.yaml | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: configmap-with-templated-data | ||
data: | ||
injectedKey: headlamp | ||
--- | ||
# Source: headlamp/templates/clusterrolebinding.yaml | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRoleBinding | ||
metadata: | ||
name: headlamp-admin | ||
labels: | ||
helm.sh/chart: headlamp-0.25.0 | ||
app.kubernetes.io/name: headlamp | ||
app.kubernetes.io/instance: headlamp | ||
app.kubernetes.io/version: "0.25.1" | ||
app.kubernetes.io/managed-by: Helm | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: ClusterRole | ||
name: cluster-admin | ||
subjects: | ||
- kind: ServiceAccount | ||
name: headlamp | ||
namespace: default | ||
--- | ||
# Source: headlamp/templates/service.yaml | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: headlamp | ||
labels: | ||
helm.sh/chart: headlamp-0.25.0 | ||
app.kubernetes.io/name: headlamp | ||
app.kubernetes.io/instance: headlamp | ||
app.kubernetes.io/version: "0.25.1" | ||
app.kubernetes.io/managed-by: Helm | ||
spec: | ||
type: ClusterIP | ||
ports: | ||
- port: 80 | ||
targetPort: http | ||
protocol: TCP | ||
name: http | ||
selector: | ||
app.kubernetes.io/name: headlamp | ||
app.kubernetes.io/instance: headlamp | ||
--- | ||
# Source: headlamp/templates/deployment.yaml | ||
# This block of code is used to extract the values from the env. | ||
# This is done to check if the values are non-empty and if they are, they are used in the deployment.yaml. | ||
|
||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: headlamp | ||
labels: | ||
helm.sh/chart: headlamp-0.25.0 | ||
app.kubernetes.io/name: headlamp | ||
app.kubernetes.io/instance: headlamp | ||
app.kubernetes.io/version: "0.25.1" | ||
app.kubernetes.io/managed-by: Helm | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
app.kubernetes.io/name: headlamp | ||
app.kubernetes.io/instance: headlamp | ||
template: | ||
metadata: | ||
labels: | ||
app.kubernetes.io/name: headlamp | ||
app.kubernetes.io/instance: headlamp | ||
spec: | ||
serviceAccountName: headlamp | ||
securityContext: | ||
{} | ||
containers: | ||
- name: headlamp | ||
securityContext: | ||
privileged: false | ||
runAsGroup: 101 | ||
runAsNonRoot: true | ||
runAsUser: 100 | ||
image: "ghcr.io/headlamp-k8s/headlamp:v0.25.1" | ||
imagePullPolicy: IfNotPresent | ||
|
||
env: | ||
args: | ||
- "-in-cluster" | ||
- "-plugins-dir=/headlamp/plugins" | ||
# Check if externalSecret is disabled | ||
ports: | ||
- name: http | ||
containerPort: 4466 | ||
protocol: TCP | ||
livenessProbe: | ||
httpGet: | ||
path: "/" | ||
port: http | ||
readinessProbe: | ||
httpGet: | ||
path: "/" | ||
port: http | ||
resources: | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
extraManifests: | ||
- | | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: dummy-configmap | ||
data: | ||
key1: value1 | ||
key2: value2 | ||
- | | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: configmap-with-templated-data | ||
data: | ||
injectedKey: {{ .Release.Name }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters