Files
kustomize/plugins/someteam.example.com/v1/ConfigMapGenerator
2019-04-17 19:07:20 -07:00

15 lines
175 B
Bash
Executable File

#!/bin/bash
# Skip the config file name argument.
shift
echo "
kind: ConfigMap
apiVersion: v1
metadata:
name: example-configmap-test
data:
username: $1
password: $2
"