Skip to content

Commit f4b10e1

Browse files
nhinze23cesmarvin
authored andcommitted
Merge branch 'release/v14.12-2'
2 parents 120bbd0 + aeae97e commit f4b10e1

File tree

9 files changed

+41
-5
lines changed

9 files changed

+41
-5
lines changed

.env.template

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
STAGE=development
2+
LOG_LEVEL=debug
3+
NAMESPACE=ecosystem
4+
5+
#RUNTIME_ENV=remote
6+
#KUBE_CONTEXT_NAME=gke_ces-operations-internal_europe-west3-c_ces-test-troubleshooting

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,3 +107,6 @@ modules.xml
107107
.nfs*
108108

109109
# End of https://www.toptal.com/developers/gitignore/api/intellij+all,linux
110+
/.env
111+
/target/
112+
/.bin/

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [v14.12-2] - 2024-09-05
11+
### Fixed
12+
- [#34] Add missing local-config volume
13+
1014
## [v14.12-1] - 2024-08-28
1115
### Changed
1216
- [#32] Update postgresql to v14.12

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN set -x -o errexit \
1818
FROM registry.cloudogu.com/official/base:3.20.2-1
1919

2020
LABEL NAME="official/postgresql" \
21-
VERSION="14.12-1" \
21+
VERSION="14.12-2" \
2222
maintainer="[email protected]"
2323

2424
ENV LANG=en_US.utf8 \

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
MAKEFILES_VERSION=9.1.0
1+
MAKEFILES_VERSION=9.2.0
22

33
.DEFAULT_GOAL:=dogu-release
44

55
include build/make/variables.mk
66
include build/make/self-update.mk
77
include build/make/release.mk
88
include build/make/bats.mk
9+
include build/make/k8s-dogu.mk

build/make/bats.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ BATS_SUPPORT=$(BATS_LIBRARY_DIR)/bats-support
99
BATS_FILE=$(BATS_LIBRARY_DIR)/bats-file
1010
BATS_BASE_IMAGE?=bats/bats
1111
BATS_CUSTOM_IMAGE?=cloudogu/bats
12-
BATS_TAG?=1.2.1
12+
BATS_TAG?=1.11.0
1313
BATS_DIR=build/make/bats
1414
BATS_WORKDIR="${WORKDIR}"/"${BATS_DIR}"
1515

build/make/bats/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
ARG BATS_BASE_IMAGE
22
ARG BATS_TAG
33

4-
FROM ${BATS_BASE_IMAGE}:${BATS_TAG}
4+
FROM ${BATS_BASE_IMAGE:-bats/bats}:${BATS_TAG:-1.11.0}
55

66
# Make bash more findable by scripts and tests
77
RUN apk add make git bash
8+
# suppress git "detected dubious ownership" error/warning for repos which are checked out later
9+
RUN git config --global --add safe.directory /workspace

build/make/vulnerability-scan.mk

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
##@ Vulnerability scan
2+
3+
GOVULNCHECK_BIN=${UTILITY_BIN_PATH}/govulncheck
4+
GOVULNCHECK_VERSION?=latest
5+
6+
${GOVULNCHECK_BIN}: ${UTILITY_BIN_PATH}
7+
$(call go-get-tool,$(GOVULNCHECK_BIN),golang.org/x/vuln/cmd/govulncheck@$(GOVULNCHECK_VERSION))
8+
9+
.PHONY: govulncheck
10+
govulncheck: ${GOVULNCHECK_BIN} ## This target is used to scan the go repository against known vulnerabilities
11+
@echo "Start vulnerability against repository"
12+
${GOVULNCHECK_BIN} -show verbose ./...
13+
@echo "Finished scan"

dogu.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"Name": "official/postgresql",
3-
"Version": "14.12-1",
3+
"Version": "14.12-2",
44
"DisplayName": "PostgreSQL",
55
"Description": "PostgreSQL Database.",
66
"Url": "https://www.postgresql.org/",
@@ -18,6 +18,13 @@
1818
"Owner": "1000",
1919
"Group": "1000",
2020
"NeedsBackup": true
21+
},
22+
{
23+
"Name": "localConfig",
24+
"Path": "/var/ces/config",
25+
"Owner": "1000",
26+
"Group": "1000",
27+
"NeedsBackup": true
2128
}
2229
],
2330
"ExposedCommands": [

0 commit comments

Comments
 (0)