Public Information

This commit is contained in:
2025-01-24 16:18:47 +01:00
commit 0bd2038c86
449 changed files with 108655 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
nappl:
mounts:
generic:
# -- This shows how to mount the contents of a secret into
# a directory
- name: "sample-generic-secret"
secret: "sample-generic-secret"
path: "/mnt/secret"
# -- This shows how to mount the contents of a configMap into
# a directory
- name: "sample-generic-configmap"
configMap: "sample-generic-configmap"
path: "/mnt/configmap"
# -- This shows how to mount a file from a secret to a secret file
- name: "sample-generic-secret-file"
secret: "sample-generic-secret"
path: "/mnt/secret-file.txt"
subPath: "test1.txt"
# -- This shows how to mount a file from a configMap to a file
- name: "sample-generic-configmap-file"
configMap: "sample-generic-configmap"
path: "/mnt/configmap-file.txt"
subPath: "test2.txt"