Skip to content

Commit 00fcb7a

Browse files
committed
feat: Always use latest major cloudquery version
1 parent 9ccf685 commit 00fcb7a

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

README.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,12 @@ In addition to the steps defined in the previou section you need to do the follo
7171

7272
In `values.yaml`
7373
* Update `postgresql.enabled` to `true`
74-
* Under `postgresql`, update `postgresqlUsername`, `postgresqlPassword` and `postgresqlDatabase` to your wanted values.
74+
* Under `postgresql`, update `postgresqlUsername`, `postgresqlPassword` and `postgresqlDatabase` to your wanted values.
75+
76+
### Uninstalling helm chart
77+
78+
To uninstall, run:
79+
80+
```bash
81+
helm uninstall cloudquery
82+
```

templates/admin-deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
- secretRef:
2121
name: {{ include "cloudquery.name" . }}-secret
2222
image: "{{ .Values.image.registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
23-
imagePullPolicy: IfNotPresent
23+
imagePullPolicy: Always
2424
command: ["/bin/sh"]
2525
# we want users to be able to exec into this pod and be able to debug and investigate cloudquery binary, envs and runtime
2626
args: ["-c", "echo admin container is running. run 'kubectl exec -it deploy/cloudquery-admin -- /bin/sh' to debug; while true; do sleep 10000; done"]

templates/cronjob.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
- secretRef:
2020
name: {{ include "cloudquery.name" . }}-secret
2121
image: "{{ .Values.image.registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
22-
imagePullPolicy: IfNotPresent
22+
imagePullPolicy: Always
2323
args: ["fetch", "--config", "/app/config/config.hcl", "--enable-console-log"]
2424
resources:
2525
{{- toYaml .Values.resources | nindent 16 }}

values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ image:
2525
registry: ghcr.io
2626
repository: cloudquery/cloudquery
2727
# Overrides the image tag whose default is the chart appVersion
28-
tag: "0.20.1"
28+
tag: "0.20"
2929
## Specify a imagePullPolicy
3030
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
3131
## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images

0 commit comments

Comments
 (0)