Created
August 9, 2017 12:40
-
-
Save metahertz/365599465ef6e98d092685ae571ad0b4 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 # for versions before 1.6.0 use extensions/v1beta1 | |
kind: Deployment | |
metadata: | |
name: gateway | |
spec: | |
replicas: 1 | |
template: | |
metadata: | |
labels: | |
app: gateway | |
spec: | |
containers: | |
- name: gateway | |
image: alexellis2/gateway:k8s-monitoring-dev | |
imagePullPolicy: Always | |
env: | |
- name: functions_provider_url | |
value: "http://10.96.48.216:8080/" | |
ports: | |
- containerPort: 8080 | |
protocol: TCP |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment