Skip to content

Commit cd188b1

Browse files
authored
Release 2.3.2 (#1212)
1 parent 92e4881 commit cd188b1

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

automation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ You can also include it in a `requirements.yml` file and install it via `ansible
2525
```yaml
2626
collections:
2727
- name: vitabaks.autobase
28-
version: 2.3.1
28+
version: 2.3.2
2929
```
3030
3131
#### Use Autobase playbook

automation/galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
namespace: vitabaks
33
name: autobase
4-
version: 2.3.1
4+
version: 2.3.2
55

66
readme: README.md
77

console/docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ services:
1818
caddy.email: ${EMAIL}
1919

2020
autobase-console-api:
21-
image: autobase/console_api:latest
21+
image: autobase/console_api:2.3.2
2222
container_name: autobase-console-api
2323
healthcheck:
2424
test: ["CMD", "curl", "-fsS",
@@ -41,7 +41,7 @@ services:
4141
- caddy
4242

4343
autobase-console-ui:
44-
image: autobase/console_ui:latest
44+
image: autobase/console_ui:2.3.2
4545
container_name: autobase-console-ui
4646
healthcheck:
4747
test: [ "CMD", "curl", "http://localhost:80/" ]
@@ -60,7 +60,7 @@ services:
6060
- caddy
6161

6262
autobase-console-db:
63-
image: autobase/console_db:latest
63+
image: autobase/console_db:2.3.2
6464
container_name: autobase-console-db
6565
healthcheck:
6666
test: pg_isready -U postgres -h 127.0.0.1

console/service/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ PG_CONSOLE_DB_MIGRATIONDIR String /etc/db/migrations
5757
PG_CONSOLE_ENCRYPTIONKEY String super_secret Encryption key for secret storage
5858
PG_CONSOLE_DOCKER_HOST String unix:///var/run/docker.sock Docker host
5959
PG_CONSOLE_DOCKER_LOGDIR String /tmp/ansible Directory inside docker container for ansible json log
60-
PG_CONSOLE_DOCKER_IMAGE String autobase/automation:2.3.1 Docker image for autobase automation
60+
PG_CONSOLE_DOCKER_IMAGE String autobase/automation:2.3.2 Docker image for autobase automation
6161
PG_CONSOLE_LOGWATCHER_RUNEVERY Duration 1m LogWatcher run interval
6262
PG_CONSOLE_LOGWATCHER_ANALYZEPAST Duration 48h LogWatcher gets operations to analyze which created_at > now() - AnalyzePast
6363
PG_CONSOLE_CLUSTERWATCHER_RUNEVERY Duration 1m ClusterWatcher run interval

console/service/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.3.1
1+
2.3.2

console/service/api/swagger.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ swagger: '2.0'
33
info:
44
title: autobase console
55
description: API for autobase console
6-
version: 2.3.1
6+
version: 2.3.2
77
host: localhost:8080
88
schemes:
99
- http

console/service/internal/configuration/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ type Config struct {
4343
Docker struct {
4444
Host string `default:"unix:///var/run/docker.sock" desc:"Docker host"`
4545
LogDir string `default:"/tmp/ansible" desc:"Directory inside docker container for ansible json log"`
46-
Image string `default:"autobase/automation:2.3.1" desc:"Docker image for autobase automation"`
46+
Image string `default:"autobase/automation:2.3.2" desc:"Docker image for autobase automation"`
4747
}
4848
LogWatcher struct {
4949
RunEvery time.Duration `default:"1m" desc:"LogWatcher run interval"`

console/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "postgresql-cluster-console-ui",
33
"private": true,
4-
"version": "2.3.1",
4+
"version": "2.3.2",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --open",

0 commit comments

Comments
 (0)