Created
May 5, 2020 02:12
-
-
Save saikatharryc/af006e439584dddacf6cecc4370c28fa 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/v1beta2 | |
kind: Deployment | |
metadata: | |
name: "2048-deployment" | |
namespace: "2048-game" | |
spec: | |
selector: | |
matchLabels: | |
app: "2048" | |
replicas: 5 | |
template: | |
metadata: | |
labels: | |
app: "2048" | |
spec: | |
containers: | |
- image: alexwhen/docker-2048 | |
imagePullPolicy: Always | |
name: "2048" | |
ports: | |
- containerPort: 80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment