UNCLASSIFIED - NO CUI
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bigbang
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
Currently supported Big Bang Version is 2.51
Show more breadcrumbs
Big Bang
bigbang
Commits
3289ea9f
Commit
3289ea9f
authored
4 years ago
by
Ismail Ahmad
Browse files
Options
Downloads
Patches
Plain Diff
adds echo statements
parent
32ebc4c4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!60
BB-694 Test and Script Abstraction
,
!57
BB-694 Tests and Script Abstraction
Pipeline
#90793
passed
4 years ago
Stage: smoke tests
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
scripts/01_deploy_bigbang.sh
+2
-1
2 additions, 1 deletion
scripts/01_deploy_bigbang.sh
scripts/02_wait_for_helmrealeases.sh
+4
-1
4 additions, 1 deletion
scripts/02_wait_for_helmrealeases.sh
with
6 additions
and
2 deletions
scripts/01_deploy_bigbang.sh
+
2
−
1
View file @
3289ea9f
...
...
@@ -3,11 +3,12 @@
set
-e
# Deploy flux and wait for it to be ready
echo
"Installing Flux"
flux
--version
flux
install
kubectl get namespaces,pods,gitrepositories,helmrelease
-A
# Deploy BigBang
echo
"Installing BigBang"
helm upgrade
-i
bigbang chart
-n
bigbang
--create-namespace
--set
registryCredentials.username
=
'robot$bigbang'
--set
registryCredentials.password
=
${
REGISTRY1_PASSWORD
}
--set
addons.argocd.enabled
=
true
--set
addons.authservice.enabled
=
true
# Apply secrets kustomization pointing to current branch
...
...
This diff is collapsed.
Click to expand it.
scripts/02_wait_for_helmrealeases.sh
+
4
−
1
View file @
3289ea9f
...
...
@@ -4,7 +4,10 @@ set -e
# Wait for components to be ready
for
package
in
$(
kubectl get
--no-headers
helmrelease
-n
bigbang |
awk
'{print $1}'
)
;
do
kubectl
wait
--for
=
condition
=
Ready
--timeout
500s helmrelease
-n
bigbang
$package
;
do
echo
"Waiting on package
$package
"
kubectl
wait
--for
=
condition
=
Ready
--timeout
500s helmrelease
-n
bigbang
$package
;
done
echo
"Waiting on Secrets Kustomization"
kubectl
wait
--for
=
condition
=
Ready
--timeout
30s kustomizations.kustomize.toolkit.fluxcd.io
-n
bigbang secrets
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment