Add YAML file for configmaps in concepts

This commit is contained in:
zacharysarah 2017-06-27 16:12:04 -07:00
parent d46b41dd62
commit 8ecabd6d10
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
kind: ConfigMap
apiVersion: v1
metadata:
creationTimestamp: 2016-02-18T19:14:38Z
name: example-config
namespace: default
data:
# example of a simple property defined using --from-literal
example.property.1: hello
example.property.2: world
# example of a complex property defined using --from-file
example.property.file: |-
property.1=value-1
property.2=value-2
property.3=value-3