Skip to content

Instantly share code, notes, and snippets.

@wjx0912
Created April 4, 2018 01:36
Show Gist options
  • Save wjx0912/4ae86b32aaefeb6c6f7519cc50500022 to your computer and use it in GitHub Desktop.
Save wjx0912/4ae86b32aaefeb6c6f7519cc50500022 to your computer and use it in GitHub Desktop.
kubernetes service demo
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: httpd
spec:
replicas: 3
template:
metadata:
labels:
app: httpd
spec:
containers:
- name: httpd
image: httpd
ports:
- containerPort: 80sv
apiVersion: v1
kind: Service
metadata:
name: httpd-svc
spec:
selector:
app: httpd
ports:
- protocol: TCP
port: 8020
targetPort: 80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment