Skip to content

Commit

Permalink
Adding values.yaml for headlamp helm chart
Browse files Browse the repository at this point in the history
  • Loading branch information
Guilamb committed Mar 28, 2024
1 parent 5cf4ce5 commit 27b1be2
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions k8s/values.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
initContainers:
- name: "headlamp-plugins"
image: ghcr.io/orange-cloudfoundry/headlamp-plugin:latest
imagePullPolicy: Always
command: ["/bin/sh", "-c", "mkdir -p /build/plugins && cp -r /plugins/* /build/plugins/"]
volumeMounts:
- name: "headlamp-plugins"
mountPath: "/build/plugins"

persistentVolumeClaim:
enabled: true
accessModes:
- ReadWriteMany
size: 1Gi

volumeMounts:
- name: "headlamp-plugins"
mountPath: "/build/plugins"

volumes:
- name: "headlamp-plugins"
persistentVolumeClaim:
claimName: "headlamp"

config:
pluginsDir: "/build/plugins"

0 comments on commit 27b1be2

Please sign in to comment.