Compare commits

...

8 Commits

Author SHA1 Message Date
Unbound Release 060d9529bd chore(release): prepare for 0.1.4 2025-01-24 14:40:22 +00:00
argoyle 8dc80e28cd fix(k8s): update labels to adhere to best practices
Change labels in the deployment and service configurations from the 
custom format to the standard Kubernetes naming convention. This 
improves consistency and compatibility with Kubernetes tools and 
enhances maintainability.
2025-01-24 15:37:46 +01:00
Renovate 94514bc627 chore(deps): update node.js to ae2f3d4 2025-01-23 02:09:01 +00:00
Renovate 34897e0015 chore(deps): update node.js to fa54405 2025-01-15 20:48:01 +00:00
Renovate 86d4176015 chore(deps): update node.js to d77c645 2025-01-15 02:39:17 +00:00
Renovate 68da5aa9a1 chore(deps): update node.js to 4f7fb7f 2025-01-14 08:47:32 +00:00
Renovate f9743ca018 chore(deps): update node.js to 99981c3 2025-01-08 20:07:41 +00:00
Renovate b87a6002fd chore(deps): update node.js to 0e910f4 2024-12-25 23:01:33 +00:00
3 changed files with 12 additions and 6 deletions
+7 -1
View File
@@ -2,7 +2,13 @@
All notable changes to this project will be documented in this file.
## [0.1.3] - 2024-12-13
## [0.1.4] - 2025-01-24
### 🐛 Bug Fixes
- *(k8s)* Update labels to adhere to best practices
## [0.1.3] - 2024-12-18
### 🐛 Bug Fixes
+1 -1
View File
@@ -1,4 +1,4 @@
FROM node:22@sha256:35a5dd72bcac4bce43266408b58a02be6ff0b6098ffa6f5435aeea980a8951d7
FROM node:22@sha256:ae2f3d4cc65d251352eca01ba668824f651a2ee4d2a37e2efb22649521a483fd
ENV AUDIENCE="https://shiny.unbound.se"
ENV ORIGIN_HOST="auth0mock"
ENV ORIGIN="https://auth0mock:3333"
+4 -4
View File
@@ -6,11 +6,11 @@ spec:
replicas: 1
selector:
matchLabels:
app: auth0mock
app.kubernetes.io/name: auth0mock
template:
metadata:
labels:
app: auth0mock
app.kubernetes.io/name: auth0mock
spec:
containers:
- name: auth0mock
@@ -36,10 +36,10 @@ kind: Service
metadata:
name: auth0mock
labels:
app: auth0mock
app.kubernetes.io/name: auth0mock
spec:
ports:
- port: 3333
selector:
app: auth0mock
app.kubernetes.io/name: auth0mock
type: ClusterIP