Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 674 Bytes

File metadata and controls

36 lines (26 loc) · 674 Bytes

Deploy

Setup k8s namespace

Create the namespace:

kubectl create namespace <name_it>

Create dockerconfig secret:

kubectl create secret docker-registry regcred \
  --namespace <name_it> \
  --docker-server=<your-registry-server> \
  --docker-username=<your-name> \
  --docker-password=<your-pword> \
  --docker-email=<your-email>

Deploy timer service:

You can use helm upgrade --install to upgrade and install if chart doesn't exist.

cd timer
helm upgrade --install timer ./helm/timer  --namespace <name_it>

Deploy auth service:

cd timer
helm upgrade --install auth ./helm/auth  --namespace <name_it>