Skip to content

Commit 4106e6a

Browse files
committed
Update templated files to rev e5dc6b2 (#257)
Automatically created PR based on commit e5dc6b260bd7131ec3112483755d54755fba62cc in stackabletech/operator-templating repo. Triggered by: Manual run triggered by: Techassi with message [Add Helm chart (re-)generation as pre-commit hook]
1 parent 522c634 commit 4106e6a

File tree

7 files changed

+23
-18
lines changed

7 files changed

+23
-18
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
---
22
blank_issues_enabled: true
33
contact_links:
4-
- name: Feature request
5-
about: 🚀 Suggest an idea for this project
6-
url: https://github.com/orgs/stackabletech/discussions/new?category=ideas
74
- name: 🙋🏾 Question
85
about: Use this to ask a question about this project
9-
url: https://github.com/orgs/stackabletech/discussions/new?category=general
10-
- name: Other issue
11-
about: Open an issue that doesn't fit any other category
6+
url: https://github.com/orgs/stackabletech/discussions/new?category=q-a
7+
- name: 🚀 Feature Requests and other things
8+
about: Open an issue with your feature request or any other issue not covered elsewhere
129
url: https://github.com/stackabletech/spark-k8s-operator/issues/new

.pre-commit-config.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,12 @@ repos:
3333
rev: 4.0.1
3434
hooks:
3535
- id: flake8
36+
37+
- repo: local
38+
hooks:
39+
- id: regenerate-charts
40+
name: regenerate-charts
41+
language: system
42+
entry: make regenerate-charts
43+
stages: [commit, merge-commit, manual]
44+
pass_filenames: false

.readme/partials/borrowed/footer.md.j2

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,9 @@ We develop and test our operators on the following cloud platforms:
2121
* GKE on Google Cloud Platform (GCP)
2222
* [IONOS Cloud Managed Kubernetes](https://cloud.ionos.com/managed/kubernetes)
2323
* K3s
24-
* Kubernetes 1.23-1.26
24+
* Kubernetes (for an up to date list of supported versions please check the release notes in our [docs](https://docs.stackable.tech)
25+
* Red Hat OpenShift
2526

26-
We are currently working to support:
27-
28-
* OpenShift
2927

3028
## Other Operators
3129

@@ -60,4 +58,4 @@ Contributions are welcome. Follow our [Contributors Guide](https://docs.stackabl
6058

6159
## Support
6260

63-
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/).
61+
Get started with the community edition! If you want professional support, [we offer subscription plans and custom licensing](https://stackable.tech/en/plans/).

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,6 @@ publish: build docker-publish helm-publish
8181
run-dev:
8282
kubectl apply -f deploy/stackable-operators-ns.yaml
8383
nix run -f. tilt -- up --port 5442 --namespace stackable-operators
84+
85+
stop-dev:
86+
nix run -f. tilt -- down

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,9 @@ We develop and test our operators on the following cloud platforms:
5858
* GKE on Google Cloud Platform (GCP)
5959
* [IONOS Cloud Managed Kubernetes](https://cloud.ionos.com/managed/kubernetes)
6060
* K3s
61-
* Kubernetes 1.23-1.26
61+
* Kubernetes (for an up to date list of supported versions please check the release notes in our [docs](https://docs.stackable.tech)
62+
* Red Hat OpenShift
6263

63-
We are currently working to support:
64-
65-
* OpenShift
6664

6765
## Other Operators
6866

@@ -97,4 +95,4 @@ Contributions are welcome. Follow our [Contributors Guide](https://docs.stackabl
9795

9896
## Support
9997

100-
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/).
98+
Get started with the community edition! If you want professional support, [we offer subscription plans and custom licensing](https://stackable.tech/en/plans/).

Tiltfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ helm_crds, helm_non_crds = filter_yaml(
3535
api_version = "^apiextensions\\.k8s\\.io/.*$",
3636
kind = "^CustomResourceDefinition$",
3737
)
38-
k8s_yaml(helm_non_crds)
38+
k8s_yaml(helm_non_crds)

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ARG VERSION
1010
ARG RELEASE="1"
1111

1212
LABEL name="Stackable Operator for Apache Spark-on-Kubernetes" \
13-
maintainer="info@stackable.de" \
13+
maintainer="info@stackable.tech" \
1414
vendor="Stackable GmbH" \
1515
version="${VERSION}" \
1616
release="${RELEASE}" \

0 commit comments

Comments
 (0)