Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Kubernetes deployment yaml for vue application
apiVersion: apps/v1
kind: Deployment
metadata:
name: web
spec:
selector:
matchLabels:
app: web
template:
metadata:
labels:
app: web
spec:
imagePullSecrets:
- name: srregcred
containers:
- name: web
image: vue-demo/web
ports:
- containerPort: 3000
# resources:
# limits:
# memory: "128Mi"
# cpu: "500m"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment