UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit d4a6f8ef authored by runyontr's avatar runyontr
Browse files

Merge branch 'ironbank-flux-images' into 'master'

Deploy flux with iron bank images

See merge request platform-one/big-bang/umbrella!101
parents 38268b90 c4dde46a
No related branches found
No related tags found
1 merge request!101Deploy flux with iron bank images
Pipeline #104835 passed
......@@ -15,7 +15,6 @@ spec:
test:
enable: false
install:
createNamespace: true
remediation:
retries: 5
upgrade:
......
......@@ -5,7 +5,21 @@ set -ex
echo "Installing Flux"
flux --version
flux check --pre
flux install
# Install flux in the cluster
kubectl create ns flux-system || true
kubectl create secret docker-registry ironbank -n flux-system \
--docker-server=registry1.dsop.io \
--docker-username='robot$bigbang' \
--docker-password=${REGISTRY1_PASSWORD} \
--docker-email=bigbang@bigbang.dev || true
kubectl apply -f ./scripts/deploy/flux.yaml
# Wait for flux
kubectl wait --for=condition=available --timeout 300s -n "flux-system" "deployment/helm-controller"
kubectl wait --for=condition=available --timeout 300s -n "flux-system" "deployment/source-controller"
flux check
# Deploy BigBang using dev sized scaling
echo "Installing BigBang"
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment