mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-18 05:35:47 +00:00
17 lines
242 B
Bash
Executable File
17 lines
242 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Skip the config file name argument.
|
|
shift
|
|
|
|
cat <<EOF
|
|
kind: ConfigMap
|
|
apiVersion: v1
|
|
metadata:
|
|
name: example-configmap-test
|
|
annotations:
|
|
kustomize.config.k8s.io/needs-hash: "true"
|
|
data:
|
|
username: $1
|
|
password: $2
|
|
EOF
|