Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Helm release nexus3 to v5.4.1 #704

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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: 1 addition & 1 deletion fleet/lib/nexus/fleet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ helm:
chart: nexus3
releaseName: *name
repo: https://stevehipwell.github.io/helm-charts
version: 5.4.0
version: 5.4.1
timeoutSeconds: 60
waitForJobs: true
values:
Expand Down
6 changes: 6 additions & 0 deletions fleet/lib/rook-ceph-secret-kafka/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
apiVersion: v2
name: rook-ceph-secret-kafka
description: A Helm chart for Kubernetes
type: application
version: 0.0.0
appVersion: 0.0.0
18 changes: 18 additions & 0 deletions fleet/lib/rook-ceph-secret-kafka/externalsecret-kafka.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
apiVersion: external-secrets.io/v1beta1
kind: ExternalSecret
metadata:
name: rook-ceph-kafka-uri
spec:
secretStoreRef:
kind: ClusterSecretStore
name: onepassword
data:
- secretKey: username
remoteRef:
key: rook-ceph-kafka-secret
property: username
- secretKey: password
remoteRef:
key: rook-ceph-kafka-secret
property: password
23 changes: 23 additions & 0 deletions fleet/lib/rook-ceph-secret-kafka/fleet.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
defaultNamespace: &name rook-ceph-secret-kafka
labels:
bundle: *name
helm:
releaseName: *name
takeOwnership: true
waitForJobs: true
valuesFrom:
- secretKeyRef:
name: rook-ceph-kafka-uri
namespace: rook-ceph
key: username
targetPath: customValues.kafka.username
- secretKeyRef:
name: rook-ceph-kafka-uri
namespace: rook-ceph
key: password
targetPath: customValues.kafka.password
values:
customValues:
kafka:
uri: "kafka://{{ .Values.customValues.kafka.username }}:{{ .Values.customValues.kafka.password }}@sasquatch-base-kafka-bootstrap.lsst.codes:9094"
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
apiVersion: ceph.rook.io/v1
kind: CephBucketTopic
metadata:
name: lsst.s3.raw.latiss
namespace: rook-ceph
spec:
objectStoreName: s3-butler
objectStoreNamespace: rook-ceph
persistent: false
opaqueData: "&mechanism=SCRAM-SHA-512"
endpoint:
kafka:
uri: {{ .Values.customValues.kafka.uri }}
ackLevel: broker
useSSL: true
Loading