Skip to content

Commit f60e70b

Browse files
authored
Merge pull request #7 from commitdev/change-param-names
Change param names
2 parents 5ac6e92 + 7fb9520 commit f60e70b

File tree

4 files changed

+6
-31
lines changed

4 files changed

+6
-31
lines changed

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)