You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 18, 2023. It is now read-only.
we deploy our new apps to kubernetes on google cloud.
For this we need the following steps, once the config is there:
<tag>
catladder build-server <env>
docker build -t <app-name-x>
docker tag <app-name-y> gcr.io/skynet-164509/<namespace>:<tag>
docker push gcr.io/skynet-164509/<namespace>:<tag>
(needs auth)gcloud docker -- push gcr.io/skynet-164509/<namespace>:<tag>
./kube/<env>/deployment.<app-name>_web.yml
and set to new<tag>
(e.g. namespace:v30 to namespace:v31)./kube/<env>/deployment.<app-name>_worker.yml
(if has worker)kubectl apply -f ./kube/<env>/deployment.<app-name>_web.yml
kubectl apply -f ./kube/<env>/deployment.<app-name>_worker.yml
(if has worker)Need to know:
<app-name-x>
? it does not seem to be the . How it has to match to the config?gcr.io/skynet-164509
the same for all apps?<app-name-y>
the exact same as<app-name-x>
?The text was updated successfully, but these errors were encountered: