Skip to content
Snippets Groups Projects
.gitlab-ci.yml 3.20 KiB
include:
  - remote: https://open.greenhost.net/stackspin/stackspin/-/raw/main/.gitlab/ci_templates/helm_package.yml
  - remote: https://open.greenhost.net/stackspin/stackspin/-/raw/main/.gitlab/ci_templates/dummy_job.yml
  - template: 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml'

.use_kubernetes:
  image:
    name: alpine/k8s:1.23.7
    entrypoint: ["/bin/sh", "-c"]
  before_script:
    - kubectl config get-contexts
    - kubectl config use-context stackspin/kubernetes-agent-setup:stackspin-k8s-agent

.chart_changes_rules:
  rules:
    - changes:
      - templates/**/*
      - ./**/*.js
      - package.json
      - package-lock.json
      - values-local.yaml.example
      - values.yaml
      - Chart.yaml
      - .gitlab-ci.yml

stages:
  - lint-helm-chart
  - install-helm-chart
  - test-helm-chart
  - package-helm-chart
  - release-helm-chart
  - dummy

variables:
  CHART_NAME: nextcloud-onlyoffice

delete_namespace:
  stage: lint-helm-chart
  script:
    # Schedule namespace for removal. `--wait=false` is used here because
    # the namespace deletion is repeated in the `install-helmrelease` job.
    # Namespace removal fails if the namespace does not exist (yet),
    # that's not a problem
    - kubectl delete namespace "nc$CI_MERGE_REQUEST_IID" --wait=false || true
  extends:
    - .use_kubernetes
    - .chart_changes_rules

install-helmrelease:
  stage: install-helm-chart
  needs:
    # This job contains the `helm dep` artifacts
    - job: lint-helm
  script:
    - cp values-local.yaml.example values-ci.yaml
    # This sets the domains to files-MR_ID.gitlab.stackspin.net and
    # office-MR_ID.gitlab.stackspin.net
    - sed -i "s/\.your\.domain/-nc$CI_MERGE_REQUEST_IID.gitlab.stackspin.net/" values-ci.yaml
    # Make sure TLS certificate secrets for different MRs do not clash
    - sed -i "s/files-cert/files-cert-nc$CI_MERGE_REQUEST_IID/" values-ci.yaml
    - sed -i "s/office-cert/office-cert-nc$CI_MERGE_REQUEST_IID/" values-ci.yaml
    - |
      echo -e "tests:\n  cypress:\n    recordKey: $CYPRESS_RECORD_KEY" >> values-ci.yaml
    - time kubectl delete namespace "nc$CI_MERGE_REQUEST_IID" || true
    - time helm install --create-namespace -n nc$CI_MERGE_REQUEST_IID --wait "nc$CI_MERGE_REQUEST_IID" . -f values-ci.yaml
  environment:
    name: helmrelease/nc$CI_MERGE_REQUEST_IID
    url: https://files-nc$CI_MERGE_REQUEST_IID.gitlab.stackspin.net
    auto_stop_in: 1 week
    on_stop: post-install-delete-helmrelease