Skip to content

Commit 7fb9520

Browse files
committed
Change parameter names to fit new format from the doc we are working off, and so zero.yml can be shared between all projects
1 parent 4db5dde commit 7fb9520

4 files changed

Lines changed: 6 additions & 31 deletions

File tree

commit0.module.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
name: commit0-deployable-backend
2-
description: 'A deployable project including an application, Dockerfile, CircleCI pipeline, and k8s manifests'
3-
author: 'Commit'
4-
icon: ''
5-
thumbnail: ''
6-
71
template:
82
strictMode: true
93
delimiters:

example.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

kubernetes/overlays/production/ingress.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ metadata:
1010
ingress.kubernetes.io/ssl-redirect: "true"
1111
cert-manager.io/cluster-issuer: clusterissuer-letsencrypt-production
1212
# external-dns
13-
external-dns.alpha.kubernetes.io/hostname: <% index .Params `productionHost` %>
13+
external-dns.alpha.kubernetes.io/hostname: <% index .Params `productionBackendHost` %>
1414

1515
spec:
1616
rules:
17-
- host: <% index .Params `productionHost` %>
17+
- host: <% index .Params `productionBackendHost` %>
1818
http:
1919
paths:
2020
- path: /(.*)
@@ -23,5 +23,5 @@ spec:
2323
servicePort: http
2424
tls:
2525
- hosts:
26-
- <% index .Params `productionHost` %>
26+
- <% index .Params `productionBackendHost` %>
2727
secretName: <% .Name %>-tls-secret

kubernetes/overlays/staging/ingress.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ metadata:
1010
ingress.kubernetes.io/ssl-redirect: "true"
1111
cert-manager.io/cluster-issuer: clusterissuer-letsencrypt-production
1212
# external-dns
13-
external-dns.alpha.kubernetes.io/hostname: <% index .Params `stagingHost` %>
13+
external-dns.alpha.kubernetes.io/hostname: <% index .Params `stagingBackendHost` %>
1414

1515
spec:
1616
rules:
17-
- host: <% index .Params `stagingHost` %>
17+
- host: <% index .Params `stagingBackendHost` %>
1818
http:
1919
paths:
2020
- path: /(.*)
@@ -23,5 +23,5 @@ spec:
2323
servicePort: http
2424
tls:
2525
- hosts:
26-
- <% index .Params `stagingHost` %>
26+
- <% index .Params `stagingBackendHost` %>
2727
secretName: <% .Name %>-tls-secret

0 commit comments

Comments
 (0)