Skip to content

Commit

Permalink
cert-manager app added
Browse files Browse the repository at this point in the history
  • Loading branch information
tapas4java committed Sep 21, 2024
1 parent f751eb2 commit 95ff14c
Show file tree
Hide file tree
Showing 6 changed files with 14,764 additions and 1,025 deletions.
5 changes: 5 additions & 0 deletions platform/stack/environments/local/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ packages:
install: "true"
manifestPath: "security/external-secrets/manifests"
isChart: "false"
- name: cert-manager
namespace: cert-manager
install: "true"
manifestPath: "security/cert-manager/manifests"
isChart: "false"
- name: keycloak
namespace: keycloak
install: "true"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash
set -e

INSTALL_YAML="manifests/install.yaml"
CHART_VERSION="v1.15.3"

echo "# CERT MANAGER INSTALL RESOURCES" >${INSTALL_YAML}
echo "# This file is auto-generated with 'platform/stack/packages/security/cert-manager/generate-manifests.sh'" >>${INSTALL_YAML}

helm repo add jetstack https://charts.jetstack.io --force-update
helm repo update
helm template --namespace cert-manager cert-manager jetstack/cert-manager -f values.yaml --version ${CHART_VERSION} --set crds.enabled=true >>${INSTALL_YAML}
Loading

0 comments on commit 95ff14c

Please sign in to comment.