Created
February 22, 2017 07:11
-
-
Save goindwalia/c5978822ce2d703daaf153277b8abcc5 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: extensions/v1beta1 | |
kind: Deployment | |
metadata: | |
name: rocketchat | |
namespace: production | |
spec: | |
replicas: 1 | |
template: | |
metadata: | |
labels: | |
k8s-app: rocketchat | |
spec: | |
containers: | |
- name: rocketchat | |
image: dr.xenonstack.com:5050/rocketchat:v1.0 | |
imagePullPolicy: "IfNotPresent" | |
ports: | |
- containerPort: 3000 | |
env: | |
- name: MONGO_URL | |
value: "mongodb://mongodb3:27017/rocketchat" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment