Skip to content

Commit

Permalink
Docs, changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
Miles-Garnsey committed Jan 15, 2024
1 parent afe6b7b commit 7fed28d
Show file tree
Hide file tree
Showing 6 changed files with 613 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG/CHANGELOG-1.12.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ Changelog for the K8ssandra Operator, new PRs should update the `unreleased` sec
When cutting a new release, update the `unreleased` heading to the tag being generated and date, like `## vX.Y.Z - YYYY-MM-DD` and create a new placeholder section for `unreleased` entries.

## unreleased

* [ENHANCEMENT] [#1160](https://github.com/k8ssandra/k8ssandra-operator/issues/1160) Allow disabling Reaper front-end auth.
- [ENHANCEMENT] [#1115](https://github.com/k8ssandra/k8ssandra-operator/issues/1115) Add a validation check for the projected pod names length
* [CHANGE] [#1050](https://github.com/k8ssandra/k8ssandra-operator/issues/1050) Remove unnecessary requeues in the Medusa controllers
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -491,8 +491,8 @@ catalog-push: ## Push a catalog image.
# E2E tests from kuttl
kuttl-test: install-kuttl docker-build
./bin/kubectl-kuttl test --kind-context=k8ssandra-0 --start-kind=false --test test-servicemonitors
./bin/kubectl-kuttl test --kind-context=k8ssandra-0 --start-kind=false --test test-cassandra-versions
./bin/kubectl-kuttl test --kind-context=k8ssandra-0 --start-kind=false --test test-user-defined-ns
# ./bin/kubectl-kuttl test --kind-context=k8ssandra-0 --start-kind=false --test test-cassandra-versions
# ./bin/kubectl-kuttl test --kind-context=k8ssandra-0 --start-kind=false --test test-user-defined-ns

# Install kuttl for e2e tests.
install-kuttl:
Expand Down
2 changes: 1 addition & 1 deletion apis/reaper/v1alpha1/reaper_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ type ReaperTemplate struct {
// this field is ignored.
JmxUserSecretRef corev1.LocalObjectReference `json:"jmxUserSecretRef,omitempty"`

// Defines the secret which contains the username and password for the Reaper UI and REST API authentication.
// Defines the secret which contains the username and password for the Reaper UI and REST API authentication. When UiUserSecretRef.Name == "", authentication is turned off in the front-end only.
// +optional
UiUserSecretRef *corev1.LocalObjectReference `json:"uiUserSecretRef,omitempty"`

Expand Down
4 changes: 3 additions & 1 deletion config/crd/bases/k8ssandra.io_k8ssandraclusters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29787,7 +29787,9 @@ spec:
type: array
uiUserSecretRef:
description: Defines the secret which contains the username and
password for the Reaper UI and REST API authentication.
password for the Reaper UI and REST API authentication. When
UiUserSecretRef.Name == "", authentication is turned off in
the front-end only.
properties:
name:
description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
Expand Down
3 changes: 2 additions & 1 deletion config/crd/bases/reaper.k8ssandra.io_reapers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2418,7 +2418,8 @@ spec:
type: array
uiUserSecretRef:
description: Defines the secret which contains the username and password
for the Reaper UI and REST API authentication.
for the Reaper UI and REST API authentication. When UiUserSecretRef.Name
== "", authentication is turned off in the front-end only.
properties:
name:
description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
Expand Down
Loading

0 comments on commit 7fed28d

Please sign in to comment.