Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save fai555/3f330e6da7551abcab7f1330150fc18b to your computer and use it in GitHub Desktop.

Select an option

Save fai555/3f330e6da7551abcab7f1330150fc18b to your computer and use it in GitHub Desktop.
kubectl apply -f - <<EOF
apiVersion: v1
kind: Service
metadata:
name: helloworld
namespace: istio-test
labels:
app: helloworld
spec:
ports:
- port: 5000
name: http
selector:
app: helloworld
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: helloworld-v1
namespace: istio-test
labels:
version: v1
spec:
replicas: 1
selector:
matchLabels:
app: helloworld
version: v1
template:
metadata:
labels:
app: helloworld
version: v1
spec:
containers:
- name: helloworld
image: docker.io/istio/examples-helloworld-v1
resources:
requests:
cpu: "100m"
imagePullPolicy: IfNotPresent #Always
ports:
- containerPort: 5000
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: helloworld-v2
namespace: istio-test
labels:
version: v2
spec:
replicas: 1
selector:
matchLabels:
app: helloworld
version: v2
template:
metadata:
labels:
app: helloworld
version: v2
spec:
containers:
- name: helloworld
image: docker.io/istio/examples-helloworld-v2
resources:
requests:
cpu: "100m"
imagePullPolicy: IfNotPresent #Always
ports:
- containerPort: 5000
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment