Created
June 22, 2016 02:50
-
-
Save nf/e4c994000adb9b7ea44ab9b9b9b4ebb4 to your computer and use it in GitHub Desktop.
This file contains 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: v1 | |
kind: List | |
items: | |
- kind: Deployment | |
apiVersion: v1 | |
metadata: | |
name: frontend | |
spec: | |
replicas: 1 | |
template: | |
metadata: | |
labels: | |
app: frontend | |
spec: | |
containers: | |
- name: frontend | |
image: $my_image | |
ports: | |
- containerPort: 80 | |
- containerPort: 443 | |
- kind: Service | |
apiVersion: v1 | |
metadata: | |
name: "frontend" | |
spec: | |
selector: | |
app: "frontend" | |
ports: | |
- protocol: "TCP" | |
port: 443 | |
targetPort: 443 | |
- protocol: "TCP" | |
port: 80 | |
targetPort: 80 | |
type: LoadBalancer | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://gist.github.com/anonymous/424c23d5b41a567528778e58e4d312c7