Skip to content

fix: adding updates to jenkinsfiles #185

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 26 commits into from
Aug 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
ec3e69c
chore: update cert-manager chart and crds
Aug 1, 2022
90880d9
chore: update logagent (filebeat) chart version
Aug 1, 2022
0b0a57e
chore: update nginx IC to latest chart version
Aug 1, 2022
32c8080
chore: update prometheus chart to latest version
Aug 1, 2022
cf5cacd
chore: update logstore (Elasticsearch) to latest chart versoin
Aug 1, 2022
8c05f3f
chore: update observability to new yaml and new chart
Aug 1, 2022
b03aba9
chore: update example config with new values
Aug 1, 2022
0ac8f42
fix: remediation of deployment bugs
Aug 2, 2022
a66539e
fix: removed JWT-only logic from BoS
Aug 3, 2022
be5ad7e
fix: remove logic for sirius_host from deprecated jwt deploys
Aug 3, 2022
b74831b
fix: remove deprecated ingress-repo-only project
Aug 3, 2022
58020d4
fix: adjust min kubectl version deployed
Aug 3, 2022
426e5bd
Merge branch 'nginxinc:automation-api' into automation-api
qdzlug Aug 4, 2022
83ecfea
fix: refactor digitalocean to docean for variables
Aug 4, 2022
491e138
Merge branch 'nginxinc:automation-api' into automation-api
qdzlug Aug 4, 2022
f3fb05b
fix: add repo-only IC deploy to support kubeconfig deploys
Aug 8, 2022
16581f1
fix: modifications to handle kubeconfig deploys for now
Aug 8, 2022
0ea0a2b
fix: recommission bash scripts to support kubeconfig deploys for now
Aug 8, 2022
887ef22
fix: gitkeep needed for manifests dir under repo nginx
Aug 8, 2022
1a1dfde
chore: update jenkinsfiles for automation api
Aug 8, 2022
990ee2f
Merge remote-tracking branch 'origin/automation-api' into automation-api
Aug 8, 2022
f004373
fix: updates to the jenkinsfiles
Aug 10, 2022
eca884d
chore: doc updates for automation-api changes
qdzlug Aug 12, 2022
bce74ab
fix: update to docker instance for minikube jenkins
Aug 15, 2022
8adfef0
Merge remote-tracking branch 'qdzlug/automation-api' into automation-api
Aug 15, 2022
7b0d84f
Merge branch 'nginxinc:automation-api' into automation-api
qdzlug Aug 15, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion extras/jenkins/K3S/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ pipeline {
steps {
sh '''
# Is this super safe? No, but we’re going to roll with it for now.
curl -sfL https://get.k3s.io | INSTALL_K3S_EXEC="--disable=traefik" sh -
curl -sfL https://get.k3s.io | INSTALL_K3S_EXEC="--disable=traefik" INSTALL_K3S_VERSION="v1.23.9+k3s1" sh -
'''
}
}
Expand Down
2 changes: 1 addition & 1 deletion extras/jenkins/Minikube/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ pipeline {
curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 && chmod +x minikube
mkdir -p /usr/local/bin/
install minikube /usr/local/bin/
minikube start --vm-driver=none
minikube start --vm-driver=docker --force --cpus 4 --memory 30000
'''
}
}
Expand Down