refactor: rename k8s-manifests
directory to manifests
- Rename all `k8s-manifests` subdirectories and files to `manifests`
- Update all file paths in `argocd-init.yml` to reflect the new directory name
🤖
This commit is contained in:
parent
1f791c2c8c
commit
73a451ff97
11 changed files with 1 additions and 1 deletions
12
manifests/cert-manager/cert-manager.jsonnet
Normal file
12
manifests/cert-manager/cert-manager.jsonnet
Normal file
|
@ -0,0 +1,12 @@
|
|||
local app = import "../_templates/argocd_app.libsonnet";
|
||||
|
||||
[
|
||||
app + {
|
||||
chart:: "cert-manager",
|
||||
repo:: "https://charts.jetstack.io",
|
||||
version:: "v1.12.*",
|
||||
values:: |||
|
||||
installCRDs: true
|
||||
|||
|
||||
},
|
||||
]
|
34
manifests/cert-manager/letsencrypt-issuers.yml
Normal file
34
manifests/cert-manager/letsencrypt-issuers.yml
Normal file
|
@ -0,0 +1,34 @@
|
|||
---
|
||||
apiVersion: cert-manager.io/v1
|
||||
kind: ClusterIssuer
|
||||
metadata:
|
||||
name: letsencrypt-prod
|
||||
namespace: cert-manager
|
||||
annotations:
|
||||
argocd.argoproj.io/sync-options: SkipDryRunOnMissingResource=true
|
||||
spec:
|
||||
acme:
|
||||
server: https://acme-v02.api.letsencrypt.org/directory
|
||||
privateKeySecretRef:
|
||||
name: le-prod-account-key
|
||||
solvers:
|
||||
- http01:
|
||||
ingress:
|
||||
class: nginx
|
||||
---
|
||||
apiVersion: cert-manager.io/v1
|
||||
kind: ClusterIssuer
|
||||
metadata:
|
||||
name: letsencrypt-staging
|
||||
namespace: cert-manager
|
||||
annotations:
|
||||
argocd.argoproj.io/sync-options: SkipDryRunOnMissingResource=true
|
||||
spec:
|
||||
acme:
|
||||
server: https://acme-staging-v02.api.letsencrypt.org/directory
|
||||
privateKeySecretRef:
|
||||
name: le-staging-account-key
|
||||
solvers:
|
||||
- http01:
|
||||
ingress:
|
||||
class: nginx
|
10
manifests/cert-manager/selfsigned-issuer.yaml
Normal file
10
manifests/cert-manager/selfsigned-issuer.yaml
Normal file
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
apiVersion: cert-manager.io/v1
|
||||
kind: ClusterIssuer
|
||||
metadata:
|
||||
name: selfsigned
|
||||
namespace: cert-manager
|
||||
annotations:
|
||||
argocd.argoproj.io/sync-options: SkipDryRunOnMissingResource=true
|
||||
spec:
|
||||
selfSigned: {}
|
Loading…
Add table
Add a link
Reference in a new issue