generated from ConductionNL/Proto-component-commonground
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into development
- Loading branch information
Showing
13 changed files
with
159 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,19 @@ APP_DESCRIPTION='Naast deze JSON rest API is er ook een [graphql](/graphql) inte | |
TRUSTED_PROXIES=10.0.0.0/8,172.16.0.0/12,192.168.0.0/16 | ||
TRUSTED_HOSTS=^(.+\.)?conduction\.nl$|^(.+\.)?huwelijksplanner\.online$|^(.+\.)?larping\.eu$|^(.+\.)?common-ground\.nl$|^(.+\.)?trouwplanner\.online$|^(.+\.)?zaakonline\.nl$|localhost | ||
|
||
################################################## | ||
# Orgization details | ||
################################################## | ||
|
||
# The following details describe your organisations and are used for both certificate creation and common-ground.dev | ||
|
||
ORGANIZATION_NAME=Conduction | ||
ORGANIZATION_EMAIL_ADDRESS=[email protected] | ||
ORGANIZATION_COUNTRY_NAME=Netherlands | ||
ORGANIZATION_STATE=Noord-Holland | ||
ORGANIZATION_LOCALITY=Amsterdam | ||
ORGANIZATION_UNIT_NAME=Common-Ground | ||
|
||
################################################## | ||
# Documentation settings | ||
################################################## | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
apiVersion: cert-manager.io/v1alpha2 | ||
kind: ClusterIssuer | ||
metadata: | ||
name: {{ include "name" . }}-{{ .Values.settings.env }}-letsencrypt | ||
spec: | ||
acme: | ||
email: {{ .Values.settings.email }} | ||
http01: {} | ||
privateKeySecretRef: | ||
name: letsencrypt-private-key | ||
server: https://acme-v02.api.letsencrypt.org/directory | ||
solvers: | ||
- selector: {} | ||
http01: | ||
ingress: | ||
class: nginx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
apiVersion: cert-manager.io/v1alpha2 | ||
kind: Certificate | ||
metadata: | ||
name: {{ include "name" . }}-acme-cert | ||
spec: | ||
secretName: {{ include "name" . }}-tls-cert | ||
duration: 24h | ||
renewBefore: 12h | ||
{{- if eq .Values.settings.env "prod" }} | ||
commonName: {{ .Values.settings.name }}.{{ .Values.settings.domain }} | ||
{{- else }} | ||
commonName: {{ .Values.settings.name }}.{{ .Values.settings.env }}.{{ .Values.settings.domain }} | ||
{{- end }} | ||
dnsNames: | ||
{{- if eq .Values.settings.env "prod" }} | ||
- {{ .Values.settings.name }}.{{ .Values.settings.domain }} | ||
{{- else }} | ||
- {{ .Values.settings.name }}.{{ .Values.settings.env }}.{{ .Values.settings.domain }} | ||
{{- end }} | ||
issuerRef: | ||
name: {{ include "name" . }}-{{ .Values.settings.env }}-letsencrypt | ||
kind: ClusterIssuer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,12 @@ settings: | |
repro: 'https://github.com/ConductionNL/Proto-component-commonground' | ||
domain: test.conduction.nl | ||
demo: test.conduction.nl | ||
unit: Common-Ground | ||
locality: Amsterdam | ||
state: Noord-Holland | ||
email: [email protected] | ||
country: Netherlands | ||
organisationName: Conduction | ||
env: dev | ||
debug: 1 | ||
replicaCount: 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters