Skip to content

Commit 6fb5ebd

Browse files
authored
Merge pull request #8 from suda/chore/ackee-3.2.0
Update ackee to 3.2.0
2 parents d011a0a + 714a6ef commit 6fb5ebd

File tree

5 files changed

+42
-26
lines changed

5 files changed

+42
-26
lines changed

.github/workflows/lint-test.yaml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
strategy:
1919
matrix:
2020
k8s:
21-
- v1.18.8
22-
- v1.19.14
23-
- v1.20.11
24-
- v1.21.5
25-
- v1.22.2
21+
- v1.18.19
22+
- v1.19.11
23+
- v1.20.7
24+
- v1.21.2
25+
- v1.22.1
2626
steps:
2727
- name: Checkout
2828
uses: actions/checkout@v2
@@ -38,11 +38,11 @@ jobs:
3838
strategy:
3939
matrix:
4040
k8s:
41-
- v1.18.8
42-
- v1.19.14
43-
- v1.20.11
44-
- v1.21.5
45-
- v1.22.2
41+
- v1.18.19
42+
- v1.19.11
43+
- v1.20.7
44+
- v1.21.2
45+
- v1.22.1
4646
steps:
4747
- name: Checkout
4848
uses: actions/checkout@v2
@@ -62,18 +62,18 @@ jobs:
6262
strategy:
6363
matrix:
6464
k8s:
65-
- v1.18.8
66-
- v1.19.14
67-
- v1.20.11
68-
- v1.21.5
69-
- v1.22.2
65+
- v1.18.19
66+
- v1.19.11
67+
- v1.20.7
68+
- v1.21.2
69+
- v1.22.1
7070
steps:
7171
- name: Checkout
7272
uses: actions/checkout@v2
7373
- name: Fetch history
7474
run: git fetch --prune --unshallow
7575
- name: Create kind cluster
76-
uses: helm/kind-action@v1.0.0
76+
uses: helm/kind-action@v1.2.0
7777
with:
7878
node_image: kindest/node:${{ matrix.k8s }}
7979
- name: Run chart-testing (install)

charts/ackee/Chart.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
apiVersion: v2
2-
appVersion: "2.4.1"
2+
appVersion: "3.2.0"
33
description: A Helm chart for Ackee analytics tool
44
name: ackee
5-
version: 0.2.0
5+
version: 0.2.1
66
type: application
7-
source:
7+
sources:
88
- https://github.com/suda/charts/tree/main/charts/ackee
99
home: https://github.com/suda/charts/tree/main/charts/ackee
1010
maintainers:
11-
- name: Wojtek Siudzinski
12-
11+
- name: suda
12+
13+
url: https://suda.pl

charts/ackee/README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,17 @@ The command removes all the Kubernetes components associated with the chart and
4040

4141
| Key | Type | Default | Description |
4242
|-----|------|---------|-------------|
43+
| ackee.corsHeaders | string | `""` | |
4344
| ackee.mongodb | string | `"mongodb://mongo:27017/ackee"` | |
4445
| ackee.passwordSecret | string | `"ackee-password"` | |
46+
| ackee.trackerName | string | `"tracker"` | |
47+
| ackee.ttl | int | `3600000` | |
4548
| ackee.username | string | `"ackee"` | |
4649
| affinity | object | `{}` | |
4750
| fullnameOverride | string | `""` | |
4851
| image.pullPolicy | string | `"IfNotPresent"` | |
4952
| image.repository | string | `"electerious/ackee"` | |
50-
| image.tag | string | `"2.4.1"` | |
53+
| image.tag | string | `"3.2.0"` | |
5154
| ingress.annotations."nginx.ingress.kubernetes.io/enable-cors" | string | `"true"` | |
5255
| ingress.enabled | bool | `false` | |
5356
| ingress.hosts[0] | string | `"chart-example.local"` | |
@@ -90,4 +93,4 @@ $ helm install ackee-release suda/ackee -n ackee --values values.yaml
9093

9194
| Name | Email | Url |
9295
| ---- | ------ | --- |
93-
| Wojtek Siudzinski | [email protected] | |
96+
| suda | [email protected] | https://suda.pl |

charts/ackee/templates/deployment.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,22 @@ spec:
2525
imagePullPolicy: {{ .Values.image.pullPolicy }}
2626
env:
2727
- name: ACKEE_MONGODB
28-
value: {{ .Values.ackee.mongodb }}
28+
value: "{{ .Values.ackee.mongodb }}"
2929
- name: ACKEE_PORT
3030
value: "3000"
3131
- name: ACKEE_USERNAME
32-
value: {{ .Values.ackee.username }}
32+
value: "{{ .Values.ackee.username }}"
3333
- name: ACKEE_PASSWORD
3434
valueFrom:
3535
secretKeyRef:
3636
name: {{ .Values.ackee.passwordSecret }}
3737
key: ACKEE_PASSWORD
38+
- name: ACKEE_TTL
39+
value: "{{ .Values.ackee.ttl }}"
40+
- name: ACKEE_TRACKER
41+
value: "{{ .Values.ackee.trackerName }}"
42+
- name: ACKEE_ALLOW_ORIGIN
43+
value: "{{ .Values.ackee.corsHeaders }}"
3844
ports:
3945
- name: http
4046
containerPort: 3000

charts/ackee/values.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,18 @@ ackee:
1616
username: ackee
1717
# Name of the secret containing the password for the default Ackee user
1818
passwordSecret: ackee-password
19+
# Specifies how long a generated token is valid
20+
ttl: 3600000
21+
# Custom name for the tracking script of Ackee to avoid getting blocked by browser extensions
22+
trackerName: tracker
23+
# Setting CORS headers
24+
corsHeaders: ""
1925

2026
image:
2127
# Ackee Image name
2228
repository: electerious/ackee
2329
# Ackee Image tag
24-
tag: 2.4.1
30+
tag: 3.2.0
2531
# Image pull policy
2632
pullPolicy: IfNotPresent
2733

0 commit comments

Comments
 (0)