Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

Standardises all images used by helm chart #53

Open
wants to merge 2 commits into
base: main
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 nxrm-aws-resiliency/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 55.0.0
version: 55.1.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion nxrm-aws-resiliency/templates/external-dns-rbac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ spec:
serviceAccountName: external-dns
containers:
- name: external-dns
image: k8s.gcr.io/external-dns/external-dns:v0.11.0
image: {{ .Values.externaldns.image.repository }}:{{ .Values.externaldns.image.tag }}
args:
- --source=service
- --source=ingress
Expand Down
2 changes: 1 addition & 1 deletion nxrm-aws-resiliency/templates/fluent-bit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ spec:
spec:
containers:
- name: fluent-bit
image: amazon/aws-for-fluent-bit:{{ .Values.deployment.fluentBitVersion }}
image: {{ .Values.fluentbit.container.image.repository }}:{{ .Values.fluentbit.container.image.tag }}
imagePullPolicy: Always
env:
- name: AWS_REGION
Expand Down
4 changes: 2 additions & 2 deletions nxrm-aws-resiliency/templates/workdir-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
initContainers:
# Copy file for creating nexus work directory over and execute it on host
- name: create-nexus-work-dir
image: ubuntu:23.04
image: {{ .Values.workdir.daemonset.initContainer.image.repository }}:{{ .Values.workdir.daemonset.initContainer.image.tag }}
command: [/bin/sh]
args:
- -c
Expand All @@ -34,7 +34,7 @@ spec:
mountPath: /host-dir
containers:
- name: directory-creator
image: busybox:1.33.1
image: {{ .Values.workdir.daemonset.container.image.repository }}:{{ .Values.workdir.daemonset.container.image.tag }}
command: ["/bin/sh"]
args:
- -c
Expand Down
16 changes: 15 additions & 1 deletion nxrm-aws-resiliency/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,20 @@ externaldns:
enabled: false
domainFilter: example.com #your root domain e.g example.com
awsZoneType: private # hosted zone to look at (valid values are public, private or no value for both)
image:
repository: k8s.gcr.io/external-dns/external-dns
tag: v0.11.0
fluentbit:
enabled: false
container:
image:
repository: amazon/aws-for-fluent-bit
tag: 2.28.0
deployment:
clusterRegion: us-east-1
name: nxrm.deployment
clusterName: nxrm-nexus
logsRegion: us-east-1
fluentBitVersion: 2.28.0
replicaCount: 1
initContainer:
image:
Expand Down Expand Up @@ -71,6 +77,14 @@ workdir:
name: create-nexus-workdir-config
daemonset:
name: create-nexus-work-dir
initContainer:
image:
repository: ubuntu
tag: 23.04
container:
image:
repository: busybox
tag: 1.33.1
storageClass:
iopsPerGB: "10" #Note: aws plugin multiplies this by the size of the requested volumne to compute IOPS of the volumne and caps it a 20, 000 IOPS
pv:
Expand Down