From 52d2618c3e75bd1126ddc01b63ebe4db197ebbfc Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Tue, 5 Mar 2024 14:43:30 +0100 Subject: [PATCH] Update rendered example --- example/images/ubnt-firmware-downloader/Dockerfile | 2 +- example/images/unifi/Dockerfile | 4 ++-- example/unifi.nomad.hcl | 4 ++-- example/vault/policies/unifi.hcl | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/example/images/ubnt-firmware-downloader/Dockerfile b/example/images/ubnt-firmware-downloader/Dockerfile index f4fb9b5..eca9484 100644 --- a/example/images/ubnt-firmware-downloader/Dockerfile +++ b/example/images/ubnt-firmware-downloader/Dockerfile @@ -1,4 +1,4 @@ -FROM danielberteaud/alpine:24.2-1 +FROM danielberteaud/alpine:24.3-1 MAINTAINER Daniel Berteaud ENV UBNT_UPDATE_API="https://fw-update.ubnt.com/api/firmware-latest?filter=eq~~product~~unifi-firmware&filter=eq~~channel~~release" \ diff --git a/example/images/unifi/Dockerfile b/example/images/unifi/Dockerfile index 367d283..b98fa51 100644 --- a/example/images/unifi/Dockerfile +++ b/example/images/unifi/Dockerfile @@ -1,4 +1,4 @@ -FROM danielberteaud/java:17.24.2-4 AS builder +FROM danielberteaud/java:17.24.3-1 AS builder ARG UNIFI_VERSION=8.0.28 @@ -12,7 +12,7 @@ RUN set -euxo pipefail &&\ rm -f UniFi/bin/mongod &&\ chown -R root:root UniFi -FROM danielberteaud/java:17.24.2-4 +FROM danielberteaud/java:17.24.3-1 MAINTAINER Daniel Berteaud ENV JAVA_OPTS="-Djava.awt.headless=true -Dlogback.configurationFile=/opt/unifi/logback.xml --add-opens=java.base/java.io=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.rmi/sun.rmi.transport=ALL-UNNAMED --add-opens=java.base/java.time=ALL-UNNAMED" \ diff --git a/example/unifi.nomad.hcl b/example/unifi.nomad.hcl index f68ea4b..1d7dd01 100644 --- a/example/unifi.nomad.hcl +++ b/example/unifi.nomad.hcl @@ -135,7 +135,7 @@ job "unifi" { user = 1053 config { - image = "danielberteaud/wait-for:24.2-1" + image = "danielberteaud/wait-for:24.3-1" readonly_rootfs = true pids_limit = 20 } @@ -386,7 +386,7 @@ _EOF } config { - image = "danielberteaud/mongo:5.0.24.2-2" + image = "danielberteaud/mongo:5.0.24.3-1" command = "mongod" readonly_rootfs = true pids_limit = 200 diff --git a/example/vault/policies/unifi.hcl b/example/vault/policies/unifi.hcl index 770e91a..b9b9948 100644 --- a/example/vault/policies/unifi.hcl +++ b/example/vault/policies/unifi.hcl @@ -1,11 +1,11 @@ # Access the vault KV (v2) store -path "/kv/data/service/unifi" { +path "kv/data/service/unifi" { capabilities = ["read"] } -path "/kv/metadata/service/unifi/*" { +path "kv/metadata/service/unifi/*" { capabilities = ["read", "list"] } -path "/kv/data/service/unifi/*" { +path "kv/data/service/unifi/*" { capabilities = ["read"] }