Skip to content

Commit 45877b9

Browse files
committed
Update templated files to rev 5da434f (#130)
Automatically created PR based on commit 5da434fdc7a60487b12badfdc8c5458dfb4b66da in stackabletech/operator-templating repo. Original commit message: Adds missing --- start token to please yamllint (#71)
1 parent 6c0f763 commit 45877b9

File tree

6 files changed

+112
-7
lines changed

6 files changed

+112
-7
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
name: "🐛 Bug Report"
3+
description: "If something isn't working as expected 🤔."
4+
labels: ["type/bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: Thanks for taking the time to file a bug report! Please fill out this form as completely as possible.
9+
10+
- type: input
11+
attributes:
12+
label: Affected version
13+
description: Which version do you see this bug in?
14+
15+
- type: textarea
16+
attributes:
17+
label: Current and expected behavior
18+
description: A clear and concise description of what the operator is doing and what you would expect.
19+
validations:
20+
required: true
21+
22+
- type: textarea
23+
attributes:
24+
label: Possible solution
25+
description: "If you have suggestions on a fix for the bug."
26+
27+
- type: textarea
28+
attributes:
29+
label: Additional context
30+
description: "Add any other context about the problem here. Or a screenshot if applicable."
31+
32+
- type: textarea
33+
attributes:
34+
label: Environment
35+
description: |
36+
What type of kubernetes cluster you are running aginst (k3s/eks/aks/gke/other) and any other information about your environment?
37+
placeholder: |
38+
Examples:
39+
Output of `kubectl version --short`
40+
41+
- type: dropdown
42+
attributes:
43+
label: Would you like to work on fixing this bug?
44+
description: |
45+
**NOTE**: Let us know if you would like to submit a PR for this. We are more than happy to help you through the process.
46+
options:
47+
- "yes"
48+
- "no"
49+
- "maybe"

.github/ISSUE_TEMPLATE/config.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
blank_issues_enabled: true
3+
contact_links:
4+
- name: Feature request
5+
about: 🚀 Suggest an idea for this project
6+
url: https://github.com/stackabletech/trino-operator/discussions/new?category=ideas
7+
- name: 🙋🏾 Question
8+
about: Use this to ask a question about this project
9+
url: https://github.com/stackabletech/trino-operator/discussions/new?category=q-a
10+
- name: Other issue
11+
about: Open an issue that doesn't fit any other category
12+
url: https://github.com/stackabletech/trino-operator/issues/new

.github/ISSUE_TEMPLATE/new_version.md

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
name: New Version
3+
about: Request support for a new product version
4+
title: "[NEW VERSION]"
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Which new version of Trino should we support?**
11+
12+
Please specify the version, version range or version numbers to support, please also add these to the issue title
13+
14+
**Additional information**
15+
16+
If possible, provide a link to release notes/changelog
17+
18+
**Changes required**
19+
20+
Are there any upstream changes that we need to support?
21+
e.g. new features, changed features, deprecated features etc.
22+
23+
24+
25+
**Implementation checklist**
26+
27+
Please don't change anything in this list.
28+
Not all of these steps are necessary for all versions.
29+
30+
- [ ] Update the Docker image
31+
- [ ] Update documentation to include supported version(s)
32+
- [ ] Update operator to support the new version (if needed)
33+
- [ ] Update integration tests to test use the new versions (in addition or replacing old versions
34+
- [ ] Update examples to use new versions

.github/workflows/build.yml

+12-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ env:
1919
RUSTFLAGS: "-D warnings"
2020
RUSTDOCFLAGS: "-D warnings"
2121
RUST_LOG: "info"
22-
PRODUCT_NAME: trino
22+
PRODUCT_NAME: "trino"
2323
DEV_REPO_HELM_URL: https://repo.stackable.tech/repository/helm-dev
2424
TEST_REPO_HELM_URL: https://repo.stackable.tech/repository/helm-test
2525
STABLE_REPO_HELM_URL: https://repo.stackable.tech/repository/helm-stable
@@ -181,7 +181,6 @@ jobs:
181181
- run_clippy
182182
- run_rustfmt
183183
- run_rustdoc
184-
- run_udeps
185184
runs-on: ubuntu-latest
186185
steps:
187186
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # renovate: tag=v2.4.0
@@ -255,10 +254,20 @@ jobs:
255254
- name: placeholder
256255
run: echo Tests will go here
257256

257+
tests_passed:
258+
name: All tests passed
259+
needs:
260+
- test_charts
261+
- run_udeps
262+
runs-on: ubuntu-latest
263+
steps:
264+
- name: log
265+
run: echo All tests have passed!
266+
258267
package_and_publish:
259268
name: Package Charts, Build Docker Image and publish them
260269
needs:
261-
- test_charts
270+
- tests_passed
262271
- select_repo
263272
runs-on: ubuntu-latest
264273
env:

bors.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
status = [
2-
'Run Chart Tests'
2+
'All tests passed'
33
]
44
delete_merged_branches = true
55
use_squash_merge = true

renovate.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
],
1212
"rollbackPrs": true,
1313
"schedule": [
14-
"after 22:00 and before 6:00 every weekday"
14+
"after 5:00 and before 6:00 every weekday"
1515
],
1616
"timezone": "Europe/Berlin",
1717
"packageRules": [
@@ -25,7 +25,8 @@
2525
"lockFileMaintenance": {
2626
"enabled": true,
2727
"schedule": [
28-
"after 22:00 and before 6:00 every weekday"
28+
"after 5:00 and before 6:00 every weekday"
2929
]
30-
}
30+
},
31+
"ignorePaths": [".github/workflows/build.yml", ".github/workflows/reviewdog.yaml", ".github/workflows/daily_security.yml"]
3132
}

0 commit comments

Comments
 (0)