Skip to content
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

2354 update quarkus to 3 2 #5

Closed
wants to merge 35 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
f8df041
e2e: updated eks env
teoincontatto Jul 3, 2023
6113198
chore: fixed preflight script
teoincontatto Jul 3, 2023
6424b5a
fix: create-backup.sh script fail to update message on error
teoincontatto Jul 3, 2023
1a026a1
feat: updated base images
teoincontatto Jul 3, 2023
b77b0e6
feat: support for OpenShift 4.13
teoincontatto Jul 3, 2023
bb21a20
e2e: marked operator helm chart test as exclusive test
teoincontatto Jul 3, 2023
58b08de
ci: allow to create release images on demand
teoincontatto Jul 3, 2023
4b035f0
feat: updated base images
teoincontatto Jul 3, 2023
5d71d66
e2e: allow to set bundle for crc env
teoincontatto Jul 3, 2023
01500a8
e2e: adapt dbops security upgrade OLM for OpenShift
teoincontatto Jul 3, 2023
9710ace
version: 1.5.0
teoincontatto Jul 3, 2023
6909cf6
version: 1.5.1-SNAPSHOT
teoincontatto Jul 3, 2023
db8fa7b
Merge branch 'release-1.5.0' into 'main-1.5'
teoincontatto Jul 3, 2023
7e922dc
doc(ui): disable word break on id name cells
olesyaog Jul 5, 2023
55aa3b9
doc(ui): align table content to the top
olesyaog Jul 5, 2023
4d48622
doc(ui): adjust table margins
olesyaog Jul 7, 2023
b92b956
Merge branch '2366-docs-disable-word-break-on-id-name-cells' into 'ma…
olesyaog Jul 7, 2023
fbdac11
ci: fix operator bundle images deployment
teoincontatto Jul 4, 2023
c9049f4
feat: update helm operator base image
teoincontatto Jul 4, 2023
64a9533
doc: added operator bundle sample for SGShardedCluster
teoincontatto Jul 4, 2023
2f638c5
chore: extract min and max k8s version for operator bundle from helm …
teoincontatto Jul 4, 2023
1d5479f
fix: removed sleep from helm operator manager init container
teoincontatto Jul 4, 2023
1d669b0
chore: added script to semi-automate release of operator bundle
teoincontatto Jul 4, 2023
2a762a1
chore: added CSV.spec.replaces field to operator bundle
teoincontatto Jul 4, 2023
caeff81
feat: support only amd64 and arm64 archs for operator bundle
teoincontatto Jul 4, 2023
d5098ee
feat: added skipRange lower bound for operator bundle
teoincontatto Jul 4, 2023
1662200
chore: allow to specify version when deploying the operator bundle
teoincontatto Jul 4, 2023
7eb53fe
chore: added script to semi-automate release of operator bundle
teoincontatto Jul 4, 2023
f69d7b1
chore: set replaces to previous patch version when not GA
teoincontatto Jul 4, 2023
7150cb2
chore: fixed PR URL for operator bundle deploy
teoincontatto Jul 4, 2023
ba63c4e
e2e: updated AKS environment
teoincontatto Jul 6, 2023
1976a98
chore: added script to semi-automate release of operator bundle
teoincontatto Jul 6, 2023
3e057e2
Merge branch 'post-1.5.0-chores' into 'main-1.5'
teoincontatto Jul 13, 2023
884e23d
Merge branch 'main-1.5' into merge-1.5.0
teoincontatto Jul 13, 2023
43c4a6d
refactor: support Quarkus 3.2.0.Final
teoincontatto Jul 14, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 2 additions & 0 deletions .gitlab-ci/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,13 +150,15 @@ deploy helm operator openshift image:
extends: .deploy image
variables:
IMAGE_NAME: "stackgres/helm-operator"
IMAGE_TAG_SUFFIX: "-release-openshift"
IMAGE_PUSH_TAG_SUFFIX: "-openshift"
TARGET_REGISTRIES: "quay.io"

deploy helm operator openshift bundle image:
extends: .deploy image
variables:
IMAGE_NAME: "stackgres/helm-operator-bundle"
IMAGE_TAG_SUFFIX: "-release-openshift"
IMAGE_PUSH_TAG_SUFFIX: "-openshift"
TARGET_REGISTRIES: "quay.io"

Expand Down
44 changes: 28 additions & 16 deletions .gitlab-ci/image-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@
- $SKIP_DEPLOY != "true" && $CI_COMMIT_REF_NAME =~ /^main.*$/
- $SKIP_DEPLOY != "true" && $CI_COMMIT_TAG && $CI_COMMIT_TAG !~ /^latest-.*$/
- $DO_DEPLOY
- $DO_RELEASE_IMAGE

.release native image amd64:
extends: .release image
Expand All @@ -83,6 +84,7 @@
- $SKIP_DEPLOY != "true" && $SKIP_NATIVE != "true" && $CI_COMMIT_REF_NAME =~ /^main.*$/
- $SKIP_DEPLOY != "true" && $SKIP_NATIVE != "true" && $CI_COMMIT_TAG && $CI_COMMIT_TAG !~ /^latest-.*$/
- $DO_DEPLOY && $DO_NATIVE
- $DO_RELEASE_IMAGE && $DO_NATIVE

release operator jvm image amd64:
extends: .release jvm image amd64
Expand Down Expand Up @@ -171,6 +173,7 @@ release admin-ui image amd64:
- $SKIP_DEPLOY != "true" && $CI_COMMIT_REF_NAME =~ /^main.*$/
- $SKIP_DEPLOY != "true" && $CI_COMMIT_TAG && $CI_COMMIT_TAG !~ /^latest-.*$/
- $DO_DEPLOY
- $DO_RELEASE_IMAGE

.release jvm image arm64:
extends: .release image
Expand All @@ -185,6 +188,7 @@ release admin-ui image amd64:
variables:
- $SKIP_DEPLOY != "true" && $SKIP_ARM != "true" && $CI_COMMIT_TAG && $CI_COMMIT_TAG !~ /^latest-.*$/
- $DO_DEPLOY && $DO_ARM
- $DO_RELEASE_IMAGE && $DO_ARM

.release native image arm64:
extends: .release image
Expand All @@ -199,6 +203,7 @@ release admin-ui image amd64:
variables:
- $SKIP_DEPLOY != "true" && $SKIP_NATIVE != "true" && $SKIP_ARM != "true" && $CI_COMMIT_TAG && $CI_COMMIT_TAG !~ /^latest-.*$/
- $DO_DEPLOY && $DO_NATIVE && $DO_ARM
- $DO_RELEASE_IMAGE && $DO_NATIVE && $DO_ARM

release operator jvm image arm64:
extends: .release jvm image arm64
Expand Down Expand Up @@ -286,6 +291,7 @@ release admin-ui image arm64:
variables:
- $SKIP_DEPLOY != "true" && $SKIP_ARM != "true" && $CI_COMMIT_TAG && $CI_COMMIT_TAG !~ /^latest-.*$/
- $DO_DEPLOY && $DO_ARM
- $DO_RELEASE_IMAGE && $DO_ARM

.release jvm image multi archs:
extends: .release image multi archs
Expand All @@ -298,6 +304,7 @@ release admin-ui image arm64:
- $SKIP_DEPLOY != "true" && $CI_COMMIT_REF_NAME =~ /^main.*$/
- $SKIP_DEPLOY != "true" && $CI_COMMIT_TAG && $CI_COMMIT_TAG !~ /^latest-.*$/
- $DO_DEPLOY
- $DO_RELEASE_IMAGE

.release native image multi archs:
extends: .release image multi archs
Expand All @@ -310,6 +317,7 @@ release admin-ui image arm64:
- $SKIP_DEPLOY != "true" && $SKIP_NATIVE != "true" && $CI_COMMIT_REF_NAME =~ /^main.*$/
- $SKIP_DEPLOY != "true" && $SKIP_NATIVE != "true" && $CI_COMMIT_TAG && $CI_COMMIT_TAG !~ /^latest-.*$/
- $DO_DEPLOY && $DO_NATIVE
- $DO_RELEASE_IMAGE && $DO_NATIVE

release operator jvm image multi archs:
extends: .release jvm image multi archs
Expand Down Expand Up @@ -373,6 +381,7 @@ release admin-ui image multi archs:
- $SKIP_DEPLOY != "true" && $CI_COMMIT_REF_NAME =~ /^main.*$/
- $SKIP_DEPLOY != "true" && $CI_COMMIT_TAG && $CI_COMMIT_TAG !~ /^latest-.*$/
- $DO_DEPLOY
- $DO_RELEASE_IMAGE

.release helm operator image amd64:
extends: .release image
Expand All @@ -389,6 +398,7 @@ release admin-ui image multi archs:
- $SKIP_DEPLOY != "true" && $CI_COMMIT_REF_NAME =~ /^main.*$/
- $SKIP_DEPLOY != "true" && $CI_COMMIT_TAG && $CI_COMMIT_TAG !~ /^latest-.*$/
- $DO_DEPLOY
- $DO_RELEASE_IMAGE

.release helm operator image arm64:
extends: .release image
Expand All @@ -404,62 +414,63 @@ release admin-ui image multi archs:
variables:
- $SKIP_DEPLOY != "true" && $SKIP_ARM != "true" && $CI_COMMIT_TAG && $CI_COMMIT_TAG !~ /^latest-.*$/
- $DO_DEPLOY && $DO_ARM
- $DO_RELEASE_IMAGE && $DO_ARM

release helm operator image amd64:
extends: .release helm operator image amd64
variables:
LOCK_FILE: stackgres-helm-operator-build-image
IMAGE_MODULE_NAME: helm-operator-image
LOCK_FILE: stackgres-helm-operator-release-build-image
IMAGE_MODULE_NAME: helm-operator-release-image

release helm operator image arm64:
extends: .release helm operator image arm64
variables:
LOCK_FILE: stackgres-helm-operator-build-image
IMAGE_MODULE_NAME: helm-operator-image
LOCK_FILE: stackgres-helm-operator-release-build-image
IMAGE_MODULE_NAME: helm-operator-release-image

release helm operator bundle image amd64:
extends: .release helm operator image amd64
variables:
IMAGE_BASE_NAME: stackgres/helm-operator-bundle
LOCK_FILE: stackgres-helm-operator-bundle-build-image
IMAGE_MODULE_NAME: helm-operator-bundle-image
LOCK_FILE: stackgres-helm-operator-release-bundle-build-image
IMAGE_MODULE_NAME: helm-operator-release-bundle-image

release helm operator bundle image arm64:
extends: .release helm operator image arm64
variables:
IMAGE_BASE_NAME: stackgres/helm-operator-bundle
LOCK_FILE: stackgres-helm-operator-bundle-build-image
IMAGE_MODULE_NAME: helm-operator-bundle-image
LOCK_FILE: stackgres-helm-operator-release-bundle-build-image
IMAGE_MODULE_NAME: helm-operator-release-bundle-image

release helm operator openshift image amd64:
extends: .release helm operator image amd64
variables:
IMAGE_SUFFIX: '-release-openshift-amd64'
LOCK_FILE: stackgres-helm-operator-openshift-build-image
IMAGE_MODULE_NAME: helm-operator-openshift-image
LOCK_FILE: stackgres-helm-operator-release-openshift-build-image
IMAGE_MODULE_NAME: helm-operator-release-openshift-image

release helm operator openshift image arm64:
extends: .release helm operator image arm64
variables:
IMAGE_SUFFIX: '-release-openshift-arm64'
LOCK_FILE: stackgres-helm-operator-openshift-build-image
IMAGE_MODULE_NAME: helm-operator-openshift-image
LOCK_FILE: stackgres-helm-operator-release-openshift-build-image
IMAGE_MODULE_NAME: helm-operator-release-openshift-image

release helm operator openshift bundle image amd64:
extends: .release helm operator image amd64
variables:
IMAGE_SUFFIX: '-release-openshift-amd64'
IMAGE_BASE_NAME: stackgres/helm-operator-bundle
LOCK_FILE: stackgres-helm-operator-openshift-bundle-build-image
IMAGE_MODULE_NAME: helm-operator-openshift-bundle-image
LOCK_FILE: stackgres-helm-operator-release-openshift-bundle-build-image
IMAGE_MODULE_NAME: helm-operator-release-openshift-bundle-image

release helm operator openshift bundle image arm64:
extends: .release helm operator image arm64
variables:
IMAGE_SUFFIX: '-release-openshift-arm64'
IMAGE_BASE_NAME: stackgres/helm-operator-bundle
LOCK_FILE: stackgres-helm-operator-openshift-bundle-build-image
IMAGE_MODULE_NAME: helm-operator-openshift-bundle-image
LOCK_FILE: stackgres-helm-operator-release-openshift-bundle-build-image
IMAGE_MODULE_NAME: helm-operator-release-openshift-bundle-image

.release helm operator image multi archs:
extends: .release image multi archs
Expand All @@ -473,6 +484,7 @@ release helm operator openshift bundle image arm64:
- $SKIP_DEPLOY != "true" && $CI_COMMIT_REF_NAME =~ /^main.*$/
- $SKIP_DEPLOY != "true" && $CI_COMMIT_TAG && $CI_COMMIT_TAG !~ /^latest-.*$/
- $DO_DEPLOY
- $DO_RELEASE_IMAGE

release helm operator image multi archs:
extends: .release helm operator image multi archs
Expand Down
Loading