-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
prep jenkins jobs for our 1.25 release (#997)
* update enum description and default golang version * bump validate jobs to 1.25 * update vault-spec to setup vault per docs (s/percona/mysql) * apparently create_refs needs a qualified refs prefix: https://docs.github.com/en/rest/git/refs#create-a-reference * add validation job with kube-ovn as the cni * workaround test_ceph for lp:1929537 * ceph-fs needs more fire
- Loading branch information
Showing
18 changed files
with
156 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
#!/bin/bash | ||
# shellcheck disable=SC2034,SC1090 | ||
|
||
set -x | ||
|
||
############################################################################### | ||
# INITIALIZE | ||
############################################################################### | ||
: "${WORKSPACE:=$(pwd)}" | ||
|
||
. "$WORKSPACE/ci.bash" | ||
. "$WORKSPACE/juju.bash" | ||
|
||
############################################################################### | ||
# FUNCTION OVERRIDES | ||
############################################################################### | ||
function juju::deploy::overlay | ||
{ | ||
cat <<EOF > overlay.yaml | ||
series: $SERIES | ||
applications: | ||
kubernetes-control-plane: | ||
channel: $JUJU_DEPLOY_CHANNEL | ||
options: | ||
channel: $SNAP_VERSION | ||
allow-privileged: "true" | ||
kubernetes-worker: | ||
channel: $JUJU_DEPLOY_CHANNEL | ||
options: | ||
channel: $SNAP_VERSION | ||
calico: null | ||
kube-ovn: | ||
charm: kube-ovn | ||
channel: $JUJU_DEPLOY_CHANNEL | ||
relations: | ||
- [kube-ovn:cni, kubernetes-control-plane:cni] | ||
- [kube-ovn:cni, kubernetes-worker:cni] | ||
EOF | ||
} | ||
|
||
############################################################################### | ||
# ENV | ||
############################################################################### | ||
SNAP_VERSION=${SNAP_VERSION} | ||
SERIES=${SERIES} | ||
JUJU_DEPLOY_BUNDLE=charmed-kubernetes | ||
JUJU_DEPLOY_CHANNEL=edge | ||
JUJU_CLOUD=vsphere/Boston | ||
JUJU_CONTROLLER=validate-$(identifier::short) | ||
JUJU_MODEL=validate-ovn | ||
ARCH=amd64 | ||
JOB_NAME_CUSTOM="validate-ck-ovn-$SERIES-$SNAP_VERSION" | ||
JOB_ID=$(identifier) | ||
|
||
############################################################################### | ||
# START | ||
############################################################################### | ||
ci::run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.