Update crds for kubedb/apimachinery@cddf6ff8 #7742
This file contains hidden or 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
| name: CI | |
| on: | |
| pull_request: | |
| branches: | |
| - "*" | |
| push: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Set up Go 1.25 | |
| uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0 | |
| with: | |
| go-version: '1.25' | |
| id: go | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 | |
| - name: Prepare Host | |
| run: | | |
| # install yq | |
| curl -fsSL -o yqq https://github.com/mikefarah/yq/releases/download/3.3.0/yq_linux_amd64 | |
| chmod +x yqq | |
| sudo mv yqq /usr/local/bin/yqq | |
| pipx install yq | |
| # install kubectl | |
| curl -LO https://dl.k8s.io/release/v1.32.1/bin/linux/amd64/kubectl | |
| chmod +x ./kubectl | |
| sudo mv ./kubectl /usr/local/bin/kubectl | |
| - name: Run checks | |
| run: | | |
| ./hack/scripts/update-chart-dependencies.sh | |
| make ci | |
| - name: Test Grafana Dashboards | |
| run: | | |
| echo "all db dashboards" | |
| helm template charts/kubedb-grafana-dashboards > /tmp/kubedb-grafana-dashboards-manifests.yaml | |
| for db in Cassandra Druid Elasticsearch FerretDB Hazelcast Ignite Kafka MariaDB Memcached MongoDB MSSQLserver MySQL Pgpool PerconaXtraDB Postgres ProxySQL RabbitMQ Redis SingleStore Solr Zookeeper; do | |
| echo "-----------------------------------------" | |
| echo "${db} dashboard with alerts" | |
| helm template charts/kubedb-grafana-dashboards \ | |
| -f charts/kubedb-grafana-dashboards/ci/all-false-values.yaml \ | |
| --set featureGates.${db}=true \ | |
| --set app.name=mydb \ | |
| --set app.namespace=demo | |
| done | |
| kubernetes: | |
| name: Kubernetes | |
| runs-on: ubuntu-24.04 | |
| needs: build | |
| strategy: | |
| matrix: | |
| k8s: [v1.29.14, v1.31.14, v1.33.7, v1.35.0] | |
| steps: | |
| - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 | |
| - name: Install yq | |
| run: | | |
| curl -fsSL -o yqq https://github.com/mikefarah/yq/releases/download/3.3.0/yq_linux_amd64 | |
| chmod +x yqq | |
| sudo mv yqq /usr/local/bin/yqq | |
| - name: Create Kubernetes ${{ matrix.k8s }} cluster | |
| id: kind | |
| uses: helm/kind-action@ef37e7f390d99f746eb8b610417061a60e82a6cc # v1.14.0 | |
| with: | |
| version: v0.31.0 | |
| node_image: kindest/node:${{ matrix.k8s }} | |
| - name: Prepare cluster for testing | |
| id: local-path | |
| run: | | |
| echo "waiting for nodes to be ready ..." | |
| kubectl wait --for=condition=Ready nodes --all --timeout=5m | |
| kubectl get nodes | |
| echo | |
| echo "install helm 3" | |
| pushd /usr/local/bin && sudo curl -fsSLO https://github.com/x-helm/helm/releases/latest/download/helm && sudo chmod +x helm && popd | |
| - name: Issue License | |
| env: | |
| BYTEBUILDERS_LICENSE_TOKEN: ${{ secrets.BYTEBUILDERS_LICENSE_TOKEN }} | |
| run: | | |
| export KUBECONFIG="${HOME}/.kube/config" | |
| CLUSTER_UID=$(kubectl get ns kube-system -o=jsonpath='{.metadata.uid}') | |
| if ! curl --fail-with-body -sS -X POST \ | |
| --data-urlencode "name=1gtm" \ | |
| --data-urlencode "email=1gtm@appscode.com" \ | |
| --data-urlencode "product=kubedb-enterprise" \ | |
| --data-urlencode "cluster=${CLUSTER_UID}" \ | |
| --data-urlencode "tos=true" \ | |
| --data-urlencode "token=${BYTEBUILDERS_LICENSE_TOKEN}" \ | |
| -o /tmp/license.txt \ | |
| https://license-issuer.appscode.com/issue-license; then | |
| echo "license issuer request failed; response body:" | |
| cat /tmp/license.txt | |
| exit 1 | |
| fi | |
| LICENSE_KEY=$(cat /tmp/license.txt) | |
| # ref: https://github.com/mikefarah/yq/issues/230#issuecomment-487458629 | |
| yqq w -i ./charts/kubedb-provisioner/ci/ci-values.yaml license --tag '!!str' -- "${LICENSE_KEY}" | |
| yqq w -i ./charts/kubedb-ops-manager/ci/ci-values.yaml license --tag '!!str' -- "${LICENSE_KEY}" | |
| yqq w -i ./charts/kubedb-autoscaler/ci/ci-values.yaml license --tag '!!str' -- "${LICENSE_KEY}" | |
| yqq w -i ./charts/kubedb-dashboard/ci/ci-values.yaml license --tag '!!str' -- "${LICENSE_KEY}" | |
| yqq w -i ./charts/kubedb-schema-manager/ci/ci-values.yaml license --tag '!!str' -- "${LICENSE_KEY}" | |
| yqq w -i ./charts/kubedb/ci/ci-values.yaml global.license --tag '!!str' -- "${LICENSE_KEY}" | |
| yqq w -i ./charts/kubedb-certified/ci/ci-values.yaml global.license --tag '!!str' -- "${LICENSE_KEY}" | |
| # - name: Setup upterm session | |
| # uses: lhotari/action-upterm@v1 | |
| - name: Test Catalog | |
| run: | | |
| kubectl create -f crds/kubedb-catalog-crds.yaml | |
| find catalog/kubedb/raw -name "*.yaml" ! -name "*psp*" -exec kubectl apply -f {} \; | |
| - name: Test charts | |
| run: | | |
| export KUBECONFIG="${HOME}/.kube/config" | |
| ./hack/scripts/ct.sh | |
| - name: Check metrics configuration | |
| run: | | |
| # install metrics-configuration-checker | |
| curl -fsSL -o metrics-configuration-checker https://github.com/kmodules/metrics-configuration-checker/releases/latest/download/metrics-configuration-checker-linux-amd64 | |
| chmod +x metrics-configuration-checker | |
| sudo mv metrics-configuration-checker /usr/local/bin/metrics-configuration-checker | |
| # check kubedb-metrics chart | |
| kubectl create -f crds/kubedb-crds.yaml | |
| kubectl wait --for=condition=Established crds --all --timeout=5m | |
| kubectl wait --for=condition=NamesAccepted crds --all --timeout=5m | |
| helm template kubedb-metrics charts/kubedb-metrics > /tmp/kubedb-metrics-manifests.yaml | |
| metrics-configuration-checker --content=/tmp/kubedb-metrics-manifests.yaml | |
| kubectl delete crds -l 'app.kubernetes.io/name=kubedb' | |
| - name: Test Monitoring | |
| run: | | |
| export LICENSE_FILE=/tmp/license.txt | |
| helm repo add prometheus-community https://prometheus-community.github.io/helm-charts | |
| helm repo update | |
| helm upgrade -i kube-prometheus-stack prometheus-community/kube-prometheus-stack --wait \ | |
| --namespace monitoring --create-namespace \ | |
| --set grafana.defaultDashboardsEnabled=false | |
| kubectl apply -f crds/kubedb-catalog-crds.yaml | |
| helm upgrade -i kubedb charts/kubedb --wait \ | |
| --namespace kubedb --create-namespace \ | |
| --set kubedb-provisioner.enabled=true \ | |
| --set kubedb-ops-manager.enabled=true \ | |
| --set kubedb-autoscaler.enabled=true \ | |
| --set kubedb-dashboard.enabled=true \ | |
| --set kubedb-gitops.enabled=true \ | |
| --set kubedb-schema-manager.enabled=true \ | |
| --set-file global.license=$LICENSE_FILE \ | |
| --set global.monitoring.agent=prometheus.io/operator \ | |
| --set global.monitoring.serviceMonitor.labels.release=kube-prometheus-stack | |
| helm delete kubedb --namespace kubedb | |
| kubectl apply -f crds/kubedb-catalog-crds.yaml | |
| helm upgrade -i kubedb charts/kubedb --wait \ | |
| --namespace kubedb --create-namespace \ | |
| --set kubedb-provisioner.enabled=true \ | |
| --set kubedb-ops-manager.enabled=true \ | |
| --set kubedb-autoscaler.enabled=true \ | |
| --set kubedb-dashboard.enabled=true \ | |
| --set kubedb-gitops.enabled=true \ | |
| --set kubedb-schema-manager.enabled=true \ | |
| --set-file global.license=$LICENSE_FILE \ | |
| --set global.monitoring.agent=prometheus.io/builtin | |
| helm delete kubedb --namespace kubedb | |
| helm upgrade -i kubedb-opscenter charts/kubedb-opscenter --wait \ | |
| --namespace kubedb --create-namespace \ | |
| --set global.monitoring.agent=prometheus.io/operator \ | |
| --set global.monitoring.serviceMonitor.labels.release=kube-prometheus-stack | |
| helm delete kubedb-opscenter --namespace kubedb | |
| helm upgrade -i kubedb-opscenter charts/kubedb-opscenter --wait \ | |
| --namespace kubedb --create-namespace \ | |
| --set global.monitoring.agent=prometheus.io/builtin | |
| helm delete kubedb-opscenter --namespace kubedb |