-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from Benjyhy/certificate-ssl
disable certificate ssl
- Loading branch information
Showing
12 changed files
with
4,497 additions
and
234 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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{{- $releaseName := (printf .Release.Name) }} | ||
apiVersion: cert-manager.io/v1 | ||
kind: Certificate | ||
metadata: | ||
name: {{ .Release.Name }}-cert #name of this object | ||
namespace: default #same namespace as | ||
spec: | ||
dnsNames: | ||
- psdc.tech ###NEED A VALID DOMAIN NAME | ||
secretName: kubi-tls-cert | ||
issuerRef: | ||
name: {{ .Release.Name }}letsencrypt-cluster-issuer | ||
kind: ClusterIssuer | ||
# {{- $releaseName := (printf .Release.Name) }} | ||
# apiVersion: cert-manager.io/v1 | ||
# kind: Certificate | ||
# metadata: | ||
# name: {{ .Release.Name }}-cert | ||
# namespace: default | ||
# spec: | ||
# dnsNames: | ||
# - psdc.tech | ||
# secretName: kubi-tls | ||
# issuerRef: | ||
# name: {{ .Release.Name }}-letsencrypt-prod | ||
# 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,36 @@ | ||
{{- $releaseName := (printf .Release.Name) }} | ||
apiVersion: cert-manager.io/v1 | ||
kind: ClusterIssuer | ||
metadata: | ||
name: {{ .Release.Name }}-letsencrypt-cluster-issuer | ||
annotations: | ||
kubernetes.io/ingress.class: nginx | ||
spec: | ||
acme: | ||
server: https://acme-v02.api.letsencrypt.org/directory | ||
email: [email protected] | ||
privateKeySecretRef: | ||
name: letsencrypt-cluster-issuer-key | ||
solvers: | ||
- http01: | ||
ingress: | ||
class: nginx | ||
# {{- $releaseName := (printf .Release.Name) }} | ||
# apiVersion: cert-manager.io/v1 | ||
# kind: ClusterIssuer | ||
# metadata: | ||
# name: {{ .Release.Name }}-letsencrypt-staging | ||
# annotations: | ||
# kubernetes.io/ingress.class: nginx | ||
# spec: | ||
# acme: | ||
# server: https://acme-staging-v02.api.letsencrypt.org/directory | ||
# email: [email protected] | ||
# privateKeySecretRef: | ||
# name: letsencrypt-staging-key | ||
# solvers: | ||
# - http01: | ||
# ingress: | ||
# class: nginx | ||
# --- | ||
# apiVersion: cert-manager.io/v1 | ||
# kind: ClusterIssuer | ||
# metadata: | ||
# name: {{ .Release.Name }}-letsencrypt-prod | ||
# spec: | ||
# acme: | ||
# # The ACME server URL | ||
# server: https://acme-v02.api.letsencrypt.org/directory | ||
# # Email address used for ACME registration | ||
# email: [email protected] | ||
# # Name of a secret used to store the ACME account private key | ||
# privateKeySecretRef: | ||
# name: letsencrypt-prod-issuer | ||
# # Enable the HTTP-01 challenge provider | ||
# solvers: | ||
# - 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
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.