helm
- helm is a package manager for your apps
- helm provides extra features like conditionals, loops, functions and hooks
- helm templates are not valid YAML as they use go templating syntax
installing
- a working kubernetes cluster and configured kubectl is required
- please refer here
##
- helm uses go templates to allow assigning variables to properties
apiVersion: apps/v1
kind: Deployment
metadata:
name:
spec:
replicas:
selector:
matchLabels:
app:
template:
metadata:
labels:
app:
spec:
containers:
- name:
image: "nginx:"
replicaCount: 1
image:
tag: "2.4.4"