Skip to content

Commit 4c7b86a

Browse files
authored
chore: upgrade api7 to v3.2.8.1 (#86)
Signed-off-by: Nic <[email protected]>
1 parent 5987259 commit 4c7b86a

File tree

3 files changed

+16
-35
lines changed

3 files changed

+16
-35
lines changed

charts/api7/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.9.0
18+
version: 0.10.0
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/api7/README.md

Lines changed: 7 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# api7ee3
22

3-
![Version: 0.9.0](https://img.shields.io/badge/Version-0.9.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.0.0](https://img.shields.io/badge/AppVersion-3.0.0-informational?style=flat-square)
3+
![Version: 0.10.0](https://img.shields.io/badge/Version-0.10.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.0.0](https://img.shields.io/badge/AppVersion-3.0.0-informational?style=flat-square)
44

55
A Helm chart for Kubernetes
66

@@ -20,16 +20,11 @@ A Helm chart for Kubernetes
2020
| busybox.image.tag | float | `1.28` | |
2121
| dashboard.image.pullPolicy | string | `"IfNotPresent"` | |
2222
| dashboard.image.repository | string | `"api7/api7-ee-3-integrated"` | |
23-
| dashboard.image.tag | string | `"v3.2.7.1"` | |
23+
| dashboard.image.tag | string | `"v3.2.8.1"` | |
2424
| dashboard.replicaCount | int | `1` | |
25-
| dashboard_configuration.authentication_config.session_secret | string | `"changeme"` | |
2625
| dashboard_configuration.console.addr | string | `"http://127.0.0.1:3000"` | |
27-
| dashboard_configuration.database.postgres.addr | string | `"api7-postgresql:5432"` | |
28-
| dashboard_configuration.database.postgres.database | string | `"api7ee"` | |
29-
| dashboard_configuration.database.postgres.password | string | `"changeme"` | |
30-
| dashboard_configuration.database.postgres.user | string | `"api7ee"` | |
31-
| dashboard_configuration.database.type | string | `"postgres"` | |
32-
| dashboard_configuration.log.level | string | `"info"` | |
26+
| dashboard_configuration.database.dsn | string | `"postgres://api7ee:changeme@api7-postgresql:5432/api7ee"` | |
27+
| dashboard_configuration.log.level | string | `"warn"` | |
3328
| dashboard_configuration.log.output | string | `"stderr"` | |
3429
| dashboard_configuration.login.source | string | `"DB"` | |
3530
| dashboard_configuration.prometheus.addr | string | `"http://api7-prometheus-server:9090"` | |
@@ -51,14 +46,10 @@ A Helm chart for Kubernetes
5146
| dashboard_service.type | string | `"ClusterIP"` | |
5247
| dp_manager.image.pullPolicy | string | `"IfNotPresent"` | |
5348
| dp_manager.image.repository | string | `"api7/api7-ee-dp-manager"` | |
54-
| dp_manager.image.tag | string | `"v3.2.7.1"` | |
49+
| dp_manager.image.tag | string | `"v3.2.8.1"` | |
5550
| dp_manager.replicaCount | int | `1` | |
56-
| dp_manager_configuration.database.postgres.addr | string | `"api7-postgresql:5432"` | |
57-
| dp_manager_configuration.database.postgres.database | string | `"api7ee"` | |
58-
| dp_manager_configuration.database.postgres.password | string | `"changeme"` | |
59-
| dp_manager_configuration.database.postgres.user | string | `"api7ee"` | |
60-
| dp_manager_configuration.database.type | string | `"postgres"` | |
61-
| dp_manager_configuration.log.level | string | `"info"` | |
51+
| dp_manager_configuration.database.dsn | string | `"postgres://api7ee:changeme@api7-postgresql:5432/api7ee"` | |
52+
| dp_manager_configuration.log.level | string | `"warn"` | |
6253
| dp_manager_configuration.log.output | string | `"stderr"` | |
6354
| dp_manager_configuration.prometheus.addr | string | `"http://api7-prometheus-server:9090"` | |
6455
| dp_manager_configuration.server.listen.host | string | `"0.0.0.0"` | |

charts/api7/values.yaml

Lines changed: 8 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ dashboard:
88
repository: api7/api7-ee-3-integrated
99
pullPolicy: IfNotPresent
1010
# Overrides the image tag whose default is the chart appVersion.
11-
tag: "v3.2.7.1"
11+
tag: "v3.2.8.1"
1212

1313
dp_manager:
1414
replicaCount: 1
1515
image:
1616
repository: api7/api7-ee-dp-manager
1717
pullPolicy: IfNotPresent
1818
# Overrides the image tag whose default is the chart appVersion.
19-
tag: "v3.2.7.1"
19+
tag: "v3.2.8.1"
2020

2121
imagePullSecret: ""
2222
nameOverride: ""
@@ -130,20 +130,13 @@ dashboard_configuration:
130130
session_options_config:
131131
same_site: "lax" # means the value SameSiteNoneMode
132132
secure: false
133-
authentication_config:
134-
session_secret: "changeme"
135133
login:
136134
source: DB
137135
log:
138-
level: info
136+
level: warn
139137
output: stderr
140138
database:
141-
type: postgres
142-
postgres:
143-
addr: api7-postgresql:5432
144-
user: api7ee
145-
password: "changeme"
146-
database: api7ee
139+
dsn: "postgres://api7ee:changeme@api7-postgresql:5432/api7ee"
147140
# max_idle_conns: 10
148141
# max_open_conns: 30
149142
prometheus:
@@ -166,14 +159,11 @@ dp_manager_configuration:
166159
host: "0.0.0.0"
167160
port: 7901
168161
log:
169-
level: info
162+
level: warn
170163
output: stderr
171164
database:
172-
type: postgres
173-
postgres:
174-
addr: api7-postgresql:5432
175-
user: api7ee
176-
password: "changeme"
177-
database: api7ee
165+
dsn: "postgres://api7ee:changeme@api7-postgresql:5432/api7ee"
166+
# max_idle_conns: 10
167+
# max_open_conns: 30
178168
prometheus:
179169
addr: "http://api7-prometheus-server:9090"

0 commit comments

Comments
 (0)