adamant-kite-43734
10/23/2023, 7:59 AMcurved-zebra-30454
10/23/2023, 5:14 PMinsecure-registry.start
was renamed to insecure-registry.start.sh
somewhere in the process.. reverting the name to insecure-registry.start
ensured that the provisioning script worked in my environment
Do you have specific examples that you can share?alert-potato-16010
11/06/2023, 7:56 AMcat 01-ingress-controller.start
#!/bin/sh -x
echo "Installing Nginx Ingress Controller using Helm Chart"
export KUBECONFIG=/etc/rancher/k3s/k3s.yaml
echo "Remove Traefik if exists"
helm uninstall traefik traefik-crd -n kube-system
cat <<EOF>/tmp/ingress-nginx-4.8.0.values.yaml
controller:
ingressClassResource:
default: true
service:
type: NodePort
nodePorts:
http: 30080
https: 30443
# tcp:
# 8080: 32808
EOF
helm upgrade --install ingress-nginx \
--namespace ingress-nginx --create-namespace \
<oci://registry.XXX.com/thirdparty-charts/bitnami-labs.github.io/ingress-nginx/ingress-nginx> \
--version 4.8.0 \
--values /tmp/ingress-nginx-4.8.0.values.yaml
sleep 60