Skip to content

Commit

Permalink
Remove cert-manager from standard charts
Browse files Browse the repository at this point in the history
cert-manager is not needed for NUCs or the offline development and it
is installed by LTOps for the QA and Production environments.  It is
only used for development clusters, e.g. on Rancher Desktop or
Docker Desktop
  • Loading branch information
jmgrady committed Jul 25, 2024
1 parent e41c6ad commit 992828e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ environment. (See the [Python](#python) section to create the virtual environmen
Install the required charts by running:

```bash
python deploy/scripts/setup_cluster.py
python deploy/scripts/setup_cluster.py --type development
```

`deploy/scripts/setup_cluster.py` assumes that the `kubectl` configuration file is setup to manage the desired
Expand Down
6 changes: 4 additions & 2 deletions deploy/scripts/setup_files/cluster_config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Define the charts that need to be installed for each cluster type
clusters:
standard:
- nginx-ingress-controller
development:
- cert-manager
- nginx-ingress-controller
rancher:
Expand All @@ -21,10 +23,10 @@ cert-manager:
name: cert-manager
reference: jetstack/cert-manager
namespace: cert-manager
version: v1.15.1
version: v1.12.3
wait: true
override:
crds.enabled: true
installCRDs: true

nginx-ingress-controller:
repo:
Expand Down

0 comments on commit 992828e

Please sign in to comment.