Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
"workflows-cli": "0.1.1",
"+8": "0.0.0",
"backend/identity-mapper": "0.1.1",
"backend/auth-gateway": "0.1.1",
"backend/auth-gateway": "0.1.2",
"backend/auth-broker": "0.1.0"
}
7 changes: 7 additions & 0 deletions backend/auth-gateway/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.1.2](https://github.com/DiamondLightSource/workflows/compare/auth-gateway@v0.1.1...auth-gateway@v0.1.2) (2026-08-28)


### Features

* **auth-gateway:** add option to set cookies to lax ([2f42078](https://github.com/DiamondLightSource/workflows/commit/2f42078c35538378acd4904a95851d84f195ea6a))

## [0.1.1](https://github.com/DiamondLightSource/workflows/compare/auth-gateway@v0.1.0...auth-gateway@v0.1.1) (2026-08-20)


Expand Down
2 changes: 1 addition & 1 deletion backend/auth-gateway/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "auth-gateway"
version = "0.1.1"
version = "0.1.2"
edition = "2024"
default-run = "auth-gateway"
license-file = "../../LICENSE"
Expand Down
33 changes: 11 additions & 22 deletions charts/dashboard/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,20 @@ configuration:
keycloakUrl: https://identity.diamond.ac.uk
keycloakRealm: dls
keycloakClient: workflows-dashboard
keycloakScope: "openid profile posix-uid email"
keycloakScope: openid profile posix-uid email
graphUrl: https://workflows.diamond.ac.uk/api
graphWsUrl: wss://workflows.diamond.ac.uk/api/ws
sourceDir: "/usr/share/nginx/html"
useAuthGateway: "true"
sourceDir: /usr/share/nginx/html
useAuthGateway: 'true'
authGatewayLoginUrl: https://workflows.diamond.ac.uk/auth
logoutUrl: https://workflows.diamond.ac.uk/auth/logout

image:
registry: ghcr.io
repository: diamondlightsource/workflows-dashboard
tag: ""
digest: ""
tag: ''
digest: ''
pullPolicy: IfNotPresent
pullSecrets: []

deployment:
replicas: 1
annotations: []
Expand All @@ -32,13 +30,11 @@ deployment:
nodeSelector: {}
affinity: {}
tolerations: []

service:
create: true
annotations: []
type: ClusterIP
port: 80

ingress:
create: true
className: nginx
Expand All @@ -62,22 +58,20 @@ ingress:
port: 80
tls: false
annotations:
nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
nginx.ingress.kubernetes.io/ssl-redirect: "true"
nginx.ingress.kubernetes.io/hsts: "true"
nginx.ingress.kubernetes.io/hsts-max-age: "86400"

nginx.ingress.kubernetes.io/force-ssl-redirect: 'true'
nginx.ingress.kubernetes.io/ssl-redirect: 'true'
nginx.ingress.kubernetes.io/hsts: 'true'
nginx.ingress.kubernetes.io/hsts-max-age: '86400'
serviceAccount:
create: true
name: ""
name: ''
annotations: []

authGateway:
enabled: true
image:
registry: ghcr.io
repository: diamondlightsource/workflows-auth-gateway
tag: "0.1.1"
tag: 0.1.2
pullPolicy: IfNotPresent
pullSecrets: []
graphUrl: https://workflows.diamond.ac.uk/graphql
Expand All @@ -94,27 +88,22 @@ authGateway:
cors_allow:
- ^https:\/\/([a-zA-Z0-9\-]+\.)*diamond\.ac\.uk\/?
- ^https?:\/\/localhost(:\d+)?\/?

client_id:
name: workflows-cluster-client
key: client-id
namespace: workflows

client_secret:
name: workflows-cluster-client
key: client-secret
namespace: workflows

postgres_user:
name: postgres-auth-service-password
key: username
namespace: workflows

postgres_password:
name: postgres-auth-service-password
key: password
namespace: workflows

encryption_public_key:
name: auth-keys
key: encryption_public_key
Expand Down
Loading