- Update the helm-chart-collator image to one which: - uses versions unique to the git source [0] - includes all helm charts used by treasuremap [1] - Rewire all the HelmReleases to point at the hcc HelmRepository - Removes all the other HelmRepositories and associated config [0]: https://review.opendev.org/c/airship/images/+/794657 [1]: https://review.opendev.org/c/airship/images/+/794838 Relates-To: #162 Relates-To: #164 Signed-off-by: Sean Eagan <seaneagan1@gmail.com> Change-Id: Ia96820b627d76feee7909471dd98a27de8594bf1
24 lines
468 B
YAML
24 lines
468 B
YAML
apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: elasticsearch-data
|
|
spec:
|
|
releaseName: elasticsearch-data
|
|
values:
|
|
nodeGroup: "data"
|
|
masterService: elasticsearch-ingest
|
|
roles:
|
|
master: "false"
|
|
ingest: "false"
|
|
data: "true"
|
|
replicas: 1
|
|
resources:
|
|
requests:
|
|
cpu: "1m"
|
|
memory: "0.5Gi"
|
|
limits:
|
|
cpu: "1000m"
|
|
memory: "2Gi"
|
|
persistence:
|
|
enabled: false
|