From 44b25881a06c1942916230acd3bff01b682dd724 Mon Sep 17 00:00:00 2001 From: Stacky McStackface Date: Wed, 12 Jul 2023 11:55:31 +0000 Subject: [PATCH] Generated commit to update templated files based on rev e5dc6b2 in stackabletech/operator-templating repo. Triggered by: Manual run triggered by: Techassi with message [Add Helm chart (re-)generation as pre-commit hook] --- .github/ISSUE_TEMPLATE/config.yml | 9 +++------ .pre-commit-config.yaml | 9 +++++++++ .readme/partials/borrowed/footer.md.j2 | 8 +++----- Makefile | 3 +++ README.md | 8 +++----- Tiltfile | 2 +- docker/Dockerfile | 2 +- 7 files changed, 23 insertions(+), 18 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 417c0207..93458234 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,12 +1,9 @@ --- blank_issues_enabled: true contact_links: - - name: Feature request - about: 🚀 Suggest an idea for this project - url: https://github.com/orgs/stackabletech/discussions/new?category=ideas - name: 🙋🏾 Question about: Use this to ask a question about this project - url: https://github.com/orgs/stackabletech/discussions/new?category=general - - name: Other issue - about: Open an issue that doesn't fit any other category + url: https://github.com/orgs/stackabletech/discussions/new?category=q-a + - name: 🚀 Feature Requests and other things + about: Open an issue with your feature request or any other issue not covered elsewhere url: https://github.com/stackabletech/spark-k8s-operator/issues/new diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 7153b386..6a450dd6 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -33,3 +33,12 @@ repos: rev: 4.0.1 hooks: - id: flake8 + + - repo: local + hooks: + - id: regenerate-charts + name: regenerate-charts + language: system + entry: make regenerate-charts + stages: [commit, merge-commit, manual] + pass_filenames: false diff --git a/.readme/partials/borrowed/footer.md.j2 b/.readme/partials/borrowed/footer.md.j2 index 8c9aa897..a358a0cc 100644 --- a/.readme/partials/borrowed/footer.md.j2 +++ b/.readme/partials/borrowed/footer.md.j2 @@ -21,11 +21,9 @@ We develop and test our operators on the following cloud platforms: * GKE on Google Cloud Platform (GCP) * [IONOS Cloud Managed Kubernetes](https://cloud.ionos.com/managed/kubernetes) * K3s -* Kubernetes 1.23-1.26 +* Kubernetes (for an up to date list of supported versions please check the release notes in our [docs](https://docs.stackable.tech) +* Red Hat OpenShift -We are currently working to support: - -* OpenShift ## Other Operators @@ -60,4 +58,4 @@ Contributions are welcome. Follow our [Contributors Guide](https://docs.stackabl ## Support -You can use this project under different licenses. Get started with the community edition! If you want professional support, [we offer subscription plans](https://stackable.tech/en/plans/). \ No newline at end of file +Get started with the community edition! If you want professional support, [we offer subscription plans and custom licensing](https://stackable.tech/en/plans/). diff --git a/Makefile b/Makefile index c827c102..28bb3ecc 100644 --- a/Makefile +++ b/Makefile @@ -81,3 +81,6 @@ publish: build docker-publish helm-publish run-dev: kubectl apply -f deploy/stackable-operators-ns.yaml nix run -f. tilt -- up --port 5442 --namespace stackable-operators + +stop-dev: + nix run -f. tilt -- down diff --git a/README.md b/README.md index 3a0ea11e..b53e6995 100644 --- a/README.md +++ b/README.md @@ -58,11 +58,9 @@ We develop and test our operators on the following cloud platforms: * GKE on Google Cloud Platform (GCP) * [IONOS Cloud Managed Kubernetes](https://cloud.ionos.com/managed/kubernetes) * K3s -* Kubernetes 1.23-1.26 +* Kubernetes (for an up to date list of supported versions please check the release notes in our [docs](https://docs.stackable.tech) +* Red Hat OpenShift -We are currently working to support: - -* OpenShift ## Other Operators @@ -97,4 +95,4 @@ Contributions are welcome. Follow our [Contributors Guide](https://docs.stackabl ## Support -You can use this project under different licenses. Get started with the community edition! If you want professional support, [we offer subscription plans](https://stackable.tech/en/plans/). +Get started with the community edition! If you want professional support, [we offer subscription plans and custom licensing](https://stackable.tech/en/plans/). diff --git a/Tiltfile b/Tiltfile index d7518408..4d9cc0e8 100644 --- a/Tiltfile +++ b/Tiltfile @@ -35,4 +35,4 @@ helm_crds, helm_non_crds = filter_yaml( api_version = "^apiextensions\\.k8s\\.io/.*$", kind = "^CustomResourceDefinition$", ) -k8s_yaml(helm_non_crds) \ No newline at end of file +k8s_yaml(helm_non_crds) diff --git a/docker/Dockerfile b/docker/Dockerfile index d3e83b4d..82da3dbc 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -10,7 +10,7 @@ ARG VERSION ARG RELEASE="1" LABEL name="Stackable Operator for Apache Spark-on-Kubernetes" \ - maintainer="info@stackable.de" \ + maintainer="info@stackable.tech" \ vendor="Stackable GmbH" \ version="${VERSION}" \ release="${RELEASE}" \