Skip to content

Instantly share code, notes, and snippets.

@abhirockzz
Last active August 7, 2019 03:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abhirockzz/bcd2f866cef291e1d1470310372a3c46 to your computer and use it in GitHub Desktop.
Save abhirockzz/bcd2f866cef291e1d1470310372a3c46 to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: Deployment
metadata:
name: testapp
spec:
selector:
matchLabels:
app: testapp
replicas: 1
template:
metadata:
labels:
app: testapp
spec:
volumes:
- name: config-data-volume
configMap:
name: app-config
containers:
- name: testapp
image: testapp
volumeMounts:
- mountPath: /config
name: config-data-volume
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment