Skip to content
Snippets Groups Projects
Commit 6701d5eb authored by Dobromir Palushev's avatar Dobromir Palushev
Browse files

Merge branch 'staging' into 'main'

Css test change

See merge request !66
parents 93fe4643 67f11786
No related branches found
No related tags found
1 merge request!66Css test change
Pipeline #19275 passed with warnings
......@@ -177,7 +177,7 @@ deploy-new-release:
- DEPLOYMENT_MANIFEST=$(sed -e "s,{{image}},${IMAGE},g" ./deployment.yaml.tmpl)
- echo "${DEPLOYMENT_MANIFEST}" | kubectl apply --namespace "${ENVIRONMENT_NAME}-${K8S_NAMESPACE}" --filename -
- kubectl apply -f service.yaml --namespace "${ENVIRONMENT_NAME}-${K8S_NAMESPACE}"
- INGRESS_MANIFEST=$(sed -e "s,{{static-ip-name}},${STATIC_IP},g" -e "s,{{allowHttpFlag}},true,g" -e "s,{{portNumber}},80,g" ./ingress.yaml.tmpl)
- INGRESS_MANIFEST=$(sed -e "s,{{static-ip-name}},${STATIC_IP},g" -e "s,{{allowHttpFlag}},true,g" -e "s,{{portNumber}},80,g" -e "s,{{suffix}},production,g" ./ingress.yaml.tmpl)
- echo "${INGRESS_MANIFEST}" | kubectl apply --namespace "${ENVIRONMENT_NAME}-${K8S_NAMESPACE}" --filename -
switch-to-https:
......
......@@ -17,7 +17,7 @@ body{
:root {
--themeForeColor: rgb(83, 78, 78);
--themeOutlineColor: rgb(20, 20, 93);
--themeOutlineColor: red;
--themeHeaderColor: white;
--silver:#d9d7d7;
}
\ No newline at end of file
}
......@@ -6,7 +6,7 @@ metadata:
kubernetes.io/ingress.class: "gce" # Google's external load-balancer
kubernetes.io/ingress.allow-http: "{{allowHttpFlag}}" # disabling HTTP
kubernetes.io/ingress.global-static-ip-name: {{static-ip-name}}
networking.gke.io/managed-certificates: todoapp-managed-cert # defined in the infrastructure repository
networking.gke.io/managed-certificates: todoapp-managed-cert-{{suffix}} # defined in the infrastructure repository
spec:
defaultBackend:
service:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment