Last active
February 20, 2019 00:53
-
-
Save ihcsim/9da26e784fb32c5172f46c838b421798 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: Namespace | |
metadata: | |
name: emojivoto | |
annotations: | |
linkerd.io/inject: enabled | |
--- | |
apiVersion: apps/v1beta1 | |
kind: Deployment | |
metadata: | |
creationTimestamp: null | |
name: emoji | |
namespace: emojivoto | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: emoji-svc | |
strategy: {} | |
template: | |
metadata: | |
creationTimestamp: null | |
labels: | |
app: emoji-svc | |
spec: | |
containers: | |
- env: | |
- name: GRPC_PORT | |
value: "8080" | |
image: buoyantio/emojivoto-emoji-svc:v6 | |
name: emoji-svc | |
ports: | |
- containerPort: 8080 | |
name: grpc | |
resources: | |
requests: | |
cpu: 100m | |
status: {} | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: emoji-svc | |
namespace: emojivoto | |
spec: | |
selector: | |
app: emoji-svc | |
clusterIP: None | |
ports: | |
- name: grpc | |
port: 8080 | |
targetPort: 8080 | |
--- | |
apiVersion: apps/v1beta1 | |
kind: Deployment | |
metadata: | |
creationTimestamp: null | |
name: voting | |
namespace: emojivoto | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: voting-svc | |
strategy: {} | |
template: | |
metadata: | |
creationTimestamp: null | |
labels: | |
app: voting-svc | |
spec: | |
containers: | |
- env: | |
- name: GRPC_PORT | |
value: "8080" | |
image: buoyantio/emojivoto-voting-svc:v6 | |
name: voting-svc | |
ports: | |
- containerPort: 8080 | |
name: grpc | |
resources: | |
requests: | |
cpu: 100m | |
status: {} | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: voting-svc | |
namespace: emojivoto | |
spec: | |
selector: | |
app: voting-svc | |
clusterIP: None | |
ports: | |
- name: grpc | |
port: 8080 | |
targetPort: 8080 | |
--- | |
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:v6 | |
name: web-svc | |
ports: | |
- containerPort: 80 | |
name: http | |
resources: | |
requests: | |
cpu: 100m | |
status: {} | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: web-svc | |
namespace: emojivoto | |
spec: | |
type: LoadBalancer | |
selector: | |
app: web-svc | |
ports: | |
- name: http | |
port: 80 | |
targetPort: 80 | |
--- | |
apiVersion: apps/v1beta1 | |
kind: Deployment | |
metadata: | |
creationTimestamp: null | |
name: vote-bot | |
namespace: emojivoto | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: vote-bot | |
strategy: {} | |
template: | |
metadata: | |
creationTimestamp: null | |
labels: | |
app: vote-bot | |
spec: | |
containers: | |
- command: | |
- emojivoto-vote-bot | |
env: | |
- name: WEB_HOST | |
value: web-svc.emojivoto:80 | |
image: buoyantio/emojivoto-web:v6 | |
name: vote-bot | |
resources: | |
requests: | |
cpu: 10m | |
status: {} | |
--- |
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: Namespace | |
metadata: | |
name: emojivoto | |
--- | |
apiVersion: apps/v1beta1 | |
kind: Deployment | |
metadata: | |
creationTimestamp: null | |
name: emoji | |
namespace: emojivoto | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: emoji-svc | |
strategy: {} | |
template: | |
metadata: | |
creationTimestamp: null | |
labels: | |
app: emoji-svc | |
annotations: | |
linkerd.io/inject: enabled | |
spec: | |
containers: | |
- env: | |
- name: GRPC_PORT | |
value: "8080" | |
image: buoyantio/emojivoto-emoji-svc:v6 | |
name: emoji-svc | |
ports: | |
- containerPort: 8080 | |
name: grpc | |
resources: | |
requests: | |
cpu: 100m | |
status: {} | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: emoji-svc | |
namespace: emojivoto | |
spec: | |
selector: | |
app: emoji-svc | |
clusterIP: None | |
ports: | |
- name: grpc | |
port: 8080 | |
targetPort: 8080 | |
--- | |
apiVersion: apps/v1beta1 | |
kind: Deployment | |
metadata: | |
creationTimestamp: null | |
name: voting | |
namespace: emojivoto | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: voting-svc | |
strategy: {} | |
template: | |
metadata: | |
creationTimestamp: null | |
labels: | |
app: voting-svc | |
annotations: | |
linkerd.io/inject: enabled | |
spec: | |
containers: | |
- env: | |
- name: GRPC_PORT | |
value: "8080" | |
image: buoyantio/emojivoto-voting-svc:v6 | |
name: voting-svc | |
ports: | |
- containerPort: 8080 | |
name: grpc | |
resources: | |
requests: | |
cpu: 100m | |
status: {} | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: voting-svc | |
namespace: emojivoto | |
spec: | |
selector: | |
app: voting-svc | |
clusterIP: None | |
ports: | |
- name: grpc | |
port: 8080 | |
targetPort: 8080 | |
--- | |
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 | |
annotations: | |
linkerd.io/inject: enabled | |
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:v6 | |
name: web-svc | |
ports: | |
- containerPort: 80 | |
name: http | |
resources: | |
requests: | |
cpu: 100m | |
status: {} | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: web-svc | |
namespace: emojivoto | |
spec: | |
type: LoadBalancer | |
selector: | |
app: web-svc | |
ports: | |
- name: http | |
port: 80 | |
targetPort: 80 | |
--- | |
apiVersion: apps/v1beta1 | |
kind: Deployment | |
metadata: | |
creationTimestamp: null | |
name: vote-bot | |
namespace: emojivoto | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: vote-bot | |
strategy: {} | |
template: | |
metadata: | |
creationTimestamp: null | |
labels: | |
app: vote-bot | |
annotations: | |
linkerd.io/inject: enabled | |
spec: | |
containers: | |
- command: | |
- emojivoto-vote-bot | |
env: | |
- name: WEB_HOST | |
value: web-svc.emojivoto:80 | |
image: buoyantio/emojivoto-web:v6 | |
name: vote-bot | |
resources: | |
requests: | |
cpu: 10m | |
status: {} | |
--- |
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: Namespace | |
metadata: | |
name: emojivoto | |
--- | |
apiVersion: apps/v1beta1 | |
kind: Deployment | |
metadata: | |
creationTimestamp: null | |
name: emoji | |
namespace: emojivoto | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: emoji-svc | |
strategy: {} | |
template: | |
metadata: | |
creationTimestamp: null | |
labels: | |
app: emoji-svc | |
spec: | |
containers: | |
- env: | |
- name: GRPC_PORT | |
value: "8080" | |
image: buoyantio/emojivoto-emoji-svc:v6 | |
name: emoji-svc | |
ports: | |
- containerPort: 8080 | |
name: grpc | |
resources: | |
requests: | |
cpu: 100m | |
status: {} | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: emoji-svc | |
namespace: emojivoto | |
spec: | |
selector: | |
app: emoji-svc | |
clusterIP: None | |
ports: | |
- name: grpc | |
port: 8080 | |
targetPort: 8080 | |
--- | |
apiVersion: apps/v1beta1 | |
kind: Deployment | |
metadata: | |
creationTimestamp: null | |
name: voting | |
namespace: emojivoto | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: voting-svc | |
strategy: {} | |
template: | |
metadata: | |
creationTimestamp: null | |
labels: | |
app: voting-svc | |
spec: | |
containers: | |
- env: | |
- name: GRPC_PORT | |
value: "8080" | |
image: buoyantio/emojivoto-voting-svc:v6 | |
name: voting-svc | |
ports: | |
- containerPort: 8080 | |
name: grpc | |
resources: | |
requests: | |
cpu: 100m | |
status: {} | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: voting-svc | |
namespace: emojivoto | |
spec: | |
selector: | |
app: voting-svc | |
clusterIP: None | |
ports: | |
- name: grpc | |
port: 8080 | |
targetPort: 8080 | |
--- | |
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:v6 | |
name: web-svc | |
ports: | |
- containerPort: 80 | |
name: http | |
resources: | |
requests: | |
cpu: 100m | |
status: {} | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: web-svc | |
namespace: emojivoto | |
spec: | |
type: LoadBalancer | |
selector: | |
app: web-svc | |
ports: | |
- name: http | |
port: 80 | |
targetPort: 80 | |
--- | |
apiVersion: apps/v1beta1 | |
kind: Deployment | |
metadata: | |
creationTimestamp: null | |
name: vote-bot | |
namespace: emojivoto | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: vote-bot | |
strategy: {} | |
template: | |
metadata: | |
creationTimestamp: null | |
labels: | |
app: vote-bot | |
spec: | |
containers: | |
- command: | |
- emojivoto-vote-bot | |
env: | |
- name: WEB_HOST | |
value: web-svc.emojivoto:80 | |
image: buoyantio/emojivoto-web:v6 | |
name: vote-bot | |
resources: | |
requests: | |
cpu: 10m | |
status: {} | |
--- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment