Compare commits

..

No commits in common. "e8222f44594a626a1bdbad241bd3cdde62ff29c9" and "928566923aa2e002b69a4b0718477538d289e195" have entirely different histories.

3 changed files with 1 additions and 35 deletions

View file

@ -3,5 +3,5 @@ ingress_domain: "local"
cert_manager_namespace: "cert-manager" cert_manager_namespace: "cert-manager"
certmanager_csi: true certmanager_csi: true
certmanager_version: "1.7.0" certmanager_version: "1.6.1"
certmanager_csi_version: "0.2.0" certmanager_csi_version: "0.2.0"

View file

@ -108,12 +108,6 @@
# https://github.com/smallstep/step-issuer # https://github.com/smallstep/step-issuer
- name: Install Step webhook - name: Install Step webhook
block: block:
# - name: SmallStep PVC
# kubernetes.core.k8s:
# state: present
# context: "{{ my_context }}"
# namespace: "cert-manager"
# resource_definition: "{{ lookup('template', 'smallstep-pvc.yml.j2') | from_yaml }}"
- name: Defined smallstep repository - name: Defined smallstep repository
kubernetes.core.helm_repository: kubernetes.core.helm_repository:
name: smallstep name: smallstep
@ -130,8 +124,6 @@
# ca: # ca:
# provisioner: # provisioner:
# name: "admin" # name: "admin"
# db:
# existingClaim: smallstep
# https://github.com/smallstep/helm-charts/tree/master/step-issuer # https://github.com/smallstep/helm-charts/tree/master/step-issuer
- name: Deploy step-certificates chart - name: Deploy step-certificates chart
kubernetes.core.helm: kubernetes.core.helm:

View file

@ -1,26 +0,0 @@
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: smallstep
labels:
app: smallstep
spec:
accessModes:
{% if smallstep_storage_classname == "manual" %}
- ReadWriteOnce
storageClassName: manual
{% elif smallstep_storage_classname == "local" %}
- ReadWriteOnce
storageClassName: local-path
{% elif smallstep_storage_classname == "longhorn" %}
- ReadWriteOnce
storageClassName: longhorn
{% elif smallstep_storage_classname == "nfs-backup" %}
- ReadWriteMany
storageClassName: nfs-backup
{% elif smallstep_storage_classname is not defined or smallstep_storage_classname == "default" %}
- ReadWriteOnce
{% endif %}
resources:
requests:
storage: 1Gi