-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
K8OP-295 Expose Medusa's gRPC server port configuration (#1456)
* K8OP-295 Expose Medusa's gRPC server port configuration * Fix indentation in medusa config map * Update pkg/medusa/reconcile.go Co-authored-by: Alexander Dejanovski <[email protected]> * Extract making medusa address to a functin * Disable the execution of HCD e2e test in CI --------- Co-authored-by: Alexander Dejanovski <[email protected]>
- Loading branch information
1 parent
4772eb1
commit df3017b
Showing
6 changed files
with
61 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: reaper-ui-secret | ||
data: | ||
# username: reaper-jmx (actually) | ||
username: cmVhcGVyLWpteA== | ||
# password: R3ap3r | ||
password: UjNhcDNy | ||
--- | ||
apiVersion: reaper.k8ssandra.io/v1alpha1 | ||
kind: Reaper | ||
metadata: | ||
name: reaper1 | ||
spec: | ||
storageType: local | ||
storageConfig: | ||
accessModes: | ||
- ReadWriteOnce | ||
resources: | ||
requests: | ||
storage: 256Mi | ||
httpManagement: | ||
enabled: true | ||
heapSize: 256Mi | ||
autoScheduling: | ||
enabled: false | ||
uiUserSecretRef: | ||
name: reaper-ui-secret |