Created
February 15, 2019 14:56
-
-
Save Pothulapati/57701d7d0fef31580bf5e7693be47c68 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/v1beta1 | |
| kind: Deployment | |
| metadata: | |
| creationTimestamp: null | |
| name: web | |
| namespace: emojivoto | |
| spec: | |
| replicas: 1 | |
| selector: | |
| matchLabels: | |
| app: web-svc | |
| strategy: {} | |
| template: | |
| metadata: | |
| creationTimestamp: null | |
| labels: | |
| app: web-svc | |
| spec: | |
| containers: | |
| - env: | |
| - name: WEB_PORT | |
| value: "80" | |
| - name: EMOJISVC_HOST | |
| value: emoji-svc.emojivoto:8080 | |
| - name: VOTINGSVC_HOST | |
| value: voting-svc.emojivoto:8080 | |
| - name: INDEX_BUNDLE | |
| value: dist/index_bundle.js | |
| image: buoyantio/emojivoto-web:v3 | |
| name: web-svc | |
| ports: | |
| - containerPort: 80 | |
| name: http | |
| resources: {} | |
| status: {} | |
| --- | |
| # Empty Resource 1 | |
| --- | |
| # Empty Resource 2 | |
| --- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment