Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/all/letsencrypt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ clusterGroup:
| letsencrypt.duration | string | `"168h0m0s"` | Duration of the requested letsencrypt certificates (Defaults to 168h0m0s) |
| letsencrypt.email | string | `"test@example.com"` | String containing the email used when requesting certificates to letsencrypt (required) These two lines need tweaking for every deployment. @example.com emails will be rejected by letsencrypt |
| letsencrypt.nameservers | list | `["8.8.8.8:53","1.1.1.1:53"]` | List of DNS server (ip:port strings) to be used when doing DNS01 challenges (Defaults to [8.8.8.8:53, 1.1.1.1:53]) These two are needed because the DNS01 ACME solver needs outside DNS servers and won't really work with openshift's internal split-view DNS servers [see](https://cert-manager.io/docs/configuration/acme/dns01/#setting-nameservers-for-dns01-self-check) |
| letsencrypt.organizations | list | `["hybrid-cloud-patterns.io"]` | List of organization names to be put in a certificate (Defaults to [hybrid-cloud-patterns.io]) |
| letsencrypt.organizations | list | `["validatedpatterns.io"]` | List of organization names to be put in a certificate (Defaults to [validatedpatterns.io]) |
| letsencrypt.region | string | `"eu-central-1"` | String that defines the region used by the route53/dns01 resolver in cert-manager (required) |
| letsencrypt.renewBefore | string | `"28h0m0s"` | How long before expiration date should the certs be renewed (Defaults to 28h0m0s) |
| letsencrypt.server | string | `"https://acme-staging-v02.api.letsencrypt.org/directory"` | String containing the letsencrypt ACME URL (Defaults to the staging server) By default we use the staging URL to avoid any ratelimiting while testing To switch to the production certificates signed by a recognized CA, please switch to the non-staging URL (see values.yaml) |
Expand Down
4 changes: 2 additions & 2 deletions charts/all/letsencrypt/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ letsencrypt:
#server: https://acme-staging-v02.api.letsencrypt.org/directory
server: https://acme-v02.api.letsencrypt.org/directory

# -- List of organization names to be put in a certificate (Defaults to [hybrid-cloud-patterns.io])
# -- List of organization names to be put in a certificate (Defaults to [validatedpatterns.io])
organizations:
- hybrid-cloud-patterns.io
- validatedpatterns.io
# -- List of certificate uses. See API cert-manager.io/v1.KeyUsage (Defaults to [server auth])
usages:
- server auth
Expand Down
2 changes: 1 addition & 1 deletion overrides/values-AWS.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# to enable letsencrypt certificates on API endpoint and default
# ingress of the cluster
# It is currently very experimental and unsupported.
# PLEASE read https://github.com/hybrid-cloud-patterns/common/tree/main/letsencrypt#readme
# PLEASE read https://github.com/validatedpatterns/common/tree/main/letsencrypt#readme
# for all the limitations around it


Expand Down
2 changes: 1 addition & 1 deletion overrides/values-Azure.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# to enable letsencrypt certificates on API endpoint and default
# ingress of the cluster
# It is currently very experimental and unsupported.
# PLEASE read https://github.com/hybrid-cloud-patterns/common/tree/main/letsencrypt#readme
# PLEASE read https://github.com/validatedpatterns/common/tree/main/letsencrypt#readme
# for all the limitations around it


Expand Down
2 changes: 1 addition & 1 deletion values-secret.yaml.template
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# A more formal description of this format can be found here:
# https://github.com/hybrid-cloud-patterns/common/tree/main/ansible/roles/vault_utils#values-secret-file-format
# https://github.com/validatedpatterns/common/tree/main/ansible/roles/vault_utils#values-secret-file-format

version: "2.0"
# Ideally you NEVER COMMIT THESE VALUES TO GIT (although if all passwords are
Expand Down
2 changes: 1 addition & 1 deletion values-simple.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ clusterGroup:
# Total timeout of all jobs is 1h: imperative.activeDeadlineSeconds
# imagePullPolicy is set to always: imperative.imagePullPolicy
# For additional overrides that apply to the jobs, please refer to
# https://hybrid-cloud-patterns.io/imperative-actions/#additional-job-customizations
# https://validatedpatterns.io/imperative-actions/#additional-job-customizations
jobs:
- name: install-deps
playbook: ansible/install-deps.yaml
Expand Down
2 changes: 1 addition & 1 deletion values-spoke.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ clusterGroup:
# Total timeout of all jobs is 1h: imperative.activeDeadlineSeconds
# imagePullPolicy is set to always: imperative.imagePullPolicy
# For additional overrides that apply to the jobs, please refer to
# https://hybrid-cloud-patterns.io/imperative-actions/#additional-job-customizations
# https://validatedpatterns.io/imperative-actions/#additional-job-customizations
jobs:
- name: install-deps
playbook: ansible/install-deps.yaml
Expand Down
2 changes: 1 addition & 1 deletion values-trusted-hub.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ clusterGroup:
# Total timeout of all jobs is 1h: imperative.activeDeadlineSeconds
# imagePullPolicy is set to always: imperative.imagePullPolicy
# For additional overrides that apply to the jobs, please refer to
# https://hybrid-cloud-patterns.io/imperative-actions/#additional-job-customizations
# https://validatedpatterns.io/imperative-actions/#additional-job-customizations
jobs:
- name: install-deps
playbook: ansible/install-deps.yaml
Expand Down
Loading