Skip to content

Instantly share code, notes, and snippets.

@HoussemDellai
Last active November 14, 2018 19:24
Show Gist options
  • Save HoussemDellai/f9e0495186d0f8a0f9830080d5e5a5b6 to your computer and use it in GitHub Desktop.
Save HoussemDellai/f9e0495186d0f8a0f9830080d5e5a5b6 to your computer and use it in GitHub Desktop.
sample mvc-deployment.azure.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: mvc-deployment-helm
namespace: {{ .Values.namespace }}
replicas: {{ .Values.web.image.replicaCount }}
spec:
containers:
- name: mvc
image: {{ .Values.web.image.dockerHubId }}/{{ .Values.web.image.name }}:{{ .Values.web.image.tag }}
ports:
- containerPort: {{ .Values.web.port }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment