Skip to content

Commit cae062b

Browse files
authored
Merge pull request #573 from logzio/feature/api-fetcher-imagepullsecrets
API fetcher 1.2.0
2 parents d49537e + 20d5bea commit cae062b

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

charts/logzio-api-fetcher/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: logzio-api-fetcher
33
description: Helm chart for deploying the Logz.io API Fetcher
44
type: application
5-
version: 1.1.0
6-
appVersion: "0.2.2"
5+
version: 1.2.0
6+
appVersion: "0.3.1"
77
maintainers:
88
- name: yotamloe
99

charts/logzio-api-fetcher/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -370,6 +370,9 @@ oauth_apis:
370370
```
371371

372372
## Changelog:
373+
- **1.2.0**:
374+
- Update `logzio-api-fetcher` image from `0.2.2` -> `0.3.1`
375+
- Add `imagePullSecrets` to `values.yaml`
373376
- **1.1.0**:
374377
- Add option to control logging level
375378
- **1.0.2**:

charts/logzio-api-fetcher/templates/deployment.yaml

+7-1
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,16 @@ spec:
2121
- name: config-volume
2222
mountPath: /app/src/shared/config.yaml
2323
subPath: config.yaml
24+
{{- if .Values.imagePullSecrets }}
25+
imagePullSecrets:
26+
{{- range .Values.imagePullSecrets }}
27+
- name: {{ . }}
28+
{{- end }}
29+
{{- end }}
2430
volumes:
2531
- name: config-volume
2632
configMap:
2733
name: {{ .Release.Name }}-config
2834
- name: data-volume
2935
persistentVolumeClaim:
30-
claimName: {{ .Release.Name }}-pvc
36+
claimName: {{ .Release.Name }}-pvc

charts/logzio-api-fetcher/values.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
image:
22
repository: logzio/logzio-api-fetcher
3-
tag: 0.2.2
3+
tag: 0.3.1
44
pullPolicy: IfNotPresent
55
loglevel: INFO # One of INFO, WARN, ERROR, DEBUG
66

7+
imagePullSecrets:
8+
79
# Custom configuration section for logzio-api-fetcher
810
config: |
911
# Please provide your configuration here

0 commit comments

Comments
 (0)