Last active
April 16, 2019 17:47
-
-
Save KamilLelonek/6747f1e8cf6a82651c86b8a68e4d7734 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: example-deployment | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: api | |
template: | |
metadata: | |
labels: | |
app: api | |
spec: | |
containers: | |
- image: ${DOCKER_REPO}/example-api:${DOCKER_TAG} | |
name: example-container | |
ports: | |
- containerPort: 4444 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment