Skip to content

Commit de3061d

Browse files
chore: release 2.7.2
1 parent a73bf90 commit de3061d

9 files changed

Lines changed: 13 additions & 13 deletions

File tree

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.7.1
28+
version: 2.7.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.7.1
4+
version: 2.7.2
55

66
readme: README.md
77

console/docker-compose.caddy.yml

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

2323
autobase-console-api:
24-
image: autobase/console_api:2.7.1
24+
image: autobase/console_api:2.7.2
2525
container_name: autobase-console-api
2626
healthcheck:
2727
test: ["CMD", "curl", "-fsS",
@@ -47,7 +47,7 @@ services:
4747
- caddy
4848

4949
autobase-console-ui:
50-
image: autobase/console_ui:2.7.1
50+
image: autobase/console_ui:2.7.2
5151
container_name: autobase-console-ui
5252
healthcheck:
5353
test: [ "CMD", "curl", "http://localhost:80/" ]
@@ -71,7 +71,7 @@ services:
7171
- caddy
7272

7373
autobase-console-db:
74-
image: autobase/console_db:2.7.1
74+
image: autobase/console_db:2.7.2
7575
container_name: autobase-console-db
7676
healthcheck:
7777
test: pg_isready -U postgres -h 127.0.0.1

console/docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
services:
33
autobase-console-api:
4-
image: autobase/console_api:2.7.1
4+
image: autobase/console_api:2.7.2
55
container_name: autobase-console-api
66
healthcheck:
77
test: ["CMD", "curl", "-fsS",
@@ -26,7 +26,7 @@ services:
2626
- autobase
2727

2828
autobase-console-ui:
29-
image: autobase/console_ui:2.7.1
29+
image: autobase/console_ui:2.7.2
3030
container_name: autobase-console-ui
3131
ports:
3232
- 80:80
@@ -48,7 +48,7 @@ services:
4848
- autobase
4949

5050
autobase-console-db:
51-
image: autobase/console_db:2.7.1
51+
image: autobase/console_db:2.7.2
5252
container_name: autobase-console-db
5353
healthcheck:
5454
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.7.1 Docker image for autobase automation
60+
PG_CONSOLE_DOCKER_IMAGE String autobase/automation:2.7.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.7.1
1+
2.7.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.7.1
6+
version: 2.7.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.7.1" desc:"Docker image for autobase automation"`
46+
Image string `default:"autobase/automation:2.7.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.7.1",
4+
"version": "2.7.2",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --open",

0 commit comments

Comments
 (0)