Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
d55272d
Remove everything
siegfriedweber Jan 11, 2022
2ccd6fb
Apply operator template
siegfriedweber Jan 11, 2022
672931e
Add changelog, license, and readme
siegfriedweber Jan 11, 2022
381a3d4
Create basic operator functionality
siegfriedweber Jan 14, 2022
80b6146
Apply operator template
siegfriedweber Jan 24, 2022
a3ab187
Upgrade all dependencies
siegfriedweber Jan 24, 2022
66d6176
Rework configuration
siegfriedweber Jan 25, 2022
23a76cb
Apply operator template
siegfriedweber Jan 27, 2022
1d15d44
Add rest server; Generate manifest; Fix name of Helm chart; Set versi…
siegfriedweber Jan 31, 2022
e7be192
Upgrade all dependencies
siegfriedweber Feb 7, 2022
974c6e9
Add documentation
siegfriedweber Feb 7, 2022
b7f53f6
Apply operator template
siegfriedweber Feb 8, 2022
54b7db0
Update changelog
siegfriedweber Feb 8, 2022
16e49d5
Select region server instead of master for the main service
siegfriedweber Feb 8, 2022
67ed97d
Set container ports
siegfriedweber Feb 8, 2022
ceb9690
Cleanup code
siegfriedweber Feb 8, 2022
b98a33f
Remove unnecessary rules from ClusterRole
siegfriedweber Feb 8, 2022
e6e6201
Upgrade dependencies
siegfriedweber Feb 8, 2022
9d9cf8c
Fix linter warnings
siegfriedweber Feb 8, 2022
6514f96
Apply operator template
siegfriedweber Feb 10, 2022
2cee488
Adapt example to the one in the HDFS operator
siegfriedweber Feb 10, 2022
702b330
Add config option hbaseOpts and enable Prometheus metrics
siegfriedweber Feb 10, 2022
2bf3bd7
Add UI ports
siegfriedweber Feb 10, 2022
cee581a
Remove unnecessary function erase_controller_result_type
siegfriedweber Feb 10, 2022
cf51634
Remove unused constant MANAGED_BY
siegfriedweber Feb 10, 2022
11c5e4a
Add readiness and liveness probes
siegfriedweber Feb 10, 2022
c710e17
Upgrade dependencies
siegfriedweber Feb 10, 2022
30b3712
Apply operator template
siegfriedweber Feb 10, 2022
3e49c85
Add specs for ZooKeeper and HDFS cluster to the example file
siegfriedweber Feb 11, 2022
5835cc4
Move functions to get the container command and port properties to th…
siegfriedweber Feb 11, 2022
f3a820f
Dependencies upgraded
siegfriedweber Feb 11, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[flake8]
ignore = E111,E501,E114
49 changes: 49 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
name: "🐛 Bug Report"
description: "If something isn't working as expected 🤔."
labels: ["type/bug"]
body:
- type: markdown
attributes:
value: Thanks for taking the time to file a bug report! Please fill out this form as completely as possible.

- type: input
attributes:
label: Affected version
description: Which version do you see this bug in?

- type: textarea
attributes:
label: Current and expected behavior
description: A clear and concise description of what the operator is doing and what you would expect.
validations:
required: true

- type: textarea
attributes:
label: Possible solution
description: "If you have suggestions on a fix for the bug."

- type: textarea
attributes:
label: Additional context
description: "Add any other context about the problem here. Or a screenshot if applicable."

- type: textarea
attributes:
label: Environment
description: |
What type of kubernetes cluster you are running aginst (k3s/eks/aks/gke/other) and any other information about your environment?
placeholder: |
Examples:
Output of `kubectl version --short`

- type: dropdown
attributes:
label: Would you like to work on fixing this bug?
description: |
**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.
options:
- "yes"
- "no"
- "maybe"
12 changes: 12 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
blank_issues_enabled: true
contact_links:
- name: Feature request
about: 🚀 Suggest an idea for this project
url: https://github.com/stackabletech/hbase-operator/discussions/new?category=ideas
- name: 🙋🏾 Question
about: Use this to ask a question about this project
url: https://github.com/stackabletech/hbase-operator/discussions/new?category=q-a
- name: Other issue
about: Open an issue that doesn't fit any other category
url: https://github.com/stackabletech/hbase-operator/issues/new
34 changes: 34 additions & 0 deletions .github/ISSUE_TEMPLATE/new_version.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
name: New Version
about: Request support for a new product version
title: "[NEW VERSION]"
labels: ''
assignees: ''

---

**Which new version of Apache HBase should we support?**

Please specify the version, version range or version numbers to support, please also add these to the issue title

**Additional information**

If possible, provide a link to release notes/changelog

**Changes required**

Are there any upstream changes that we need to support?
e.g. new features, changed features, deprecated features etc.



**Implementation checklist**

Please don't change anything in this list.
Not all of these steps are necessary for all versions.

- [ ] Update the Docker image
- [ ] Update documentation to include supported version(s)
- [ ] Update operator to support the new version (if needed)
- [ ] Update integration tests to test use the new versions (in addition or replacing old versions
- [ ] Update examples to use new versions
29 changes: 0 additions & 29 deletions .github/dependabot.yml

This file was deleted.

1 change: 1 addition & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@
- [ ] Documentation added (or not applicable)
- [ ] Changelog updated (or not applicable)
- [ ] Cargo.toml only contains references to git tags (not specific commits or branches)
- [ ] Helm chart can be installed and deployed operator works (or not applicable)

Once the review is done, comment `bors r+` (or `bors merge`) to merge. [Further information](https://bors.tech/documentation/getting-started/#reviewing-pull-requests)
Loading