Skip to content
Snippets Groups Projects
Commit 1fc6ac17 authored by ludo8147's avatar ludo8147
Browse files

create own ingress host for prod

parent 9660ceb4
No related branches found
No related tags found
No related merge requests found
Pipeline #68937 passed
......@@ -141,7 +141,7 @@ deploy_to_staging:
CPU_LIMIT: "500m"
MEMORY_REQUEST: "256Mi"
MEMORY_LIMIT: "512Mi"
INGRESS_HOST: "staging.webservice.example.com"
INGRESS_HOST: "staging-webdevops.ddns.net"
script:
- |
echo "Creating namespace if it doesn't exist..."
......@@ -179,7 +179,7 @@ deploy_to_production:
CPU_LIMIT: "800m"
MEMORY_REQUEST: "512Mi"
MEMORY_LIMIT: "1Gi"
INGRESS_HOST: "webservice.example.com"
INGRESS_HOST: "prod-webdevops.ddns.net"
script:
- |
echo "Creating namespace if it doesn't exist..."
......
......@@ -10,10 +10,10 @@ metadata:
spec:
tls:
- hosts:
- "webdevops.ddns.net"
- ${INGRESS_HOST}
secretName: webdevops-tls
rules:
- host: "webdevops.ddns.net"
- host: ${INGRESS_HOST}
http:
paths:
- path: /
......
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