some redis image improvements [ci skip]

This commit is contained in:
Viktor Barzin 2023-12-29 11:59:12 +00:00
parent 54c2f9d375
commit 08a8d4a983
No known key found for this signature in database
GPG key ID: 4056458DBDBF8863

View file

@ -38,7 +38,7 @@ resource "kubernetes_deployment" "redis" {
}
spec {
container {
image = "redis/redis-stack"
image = "redis/redis-stack:latest"
name = "redis"
port {
@ -94,6 +94,7 @@ resource "kubernetes_ingress_v1" "redis" {
"kubernetes.io/ingress.class" = "nginx"
"nginx.ingress.kubernetes.io/auth-url" : "https://oauth2.viktorbarzin.me/oauth2/auth"
"nginx.ingress.kubernetes.io/auth-signin" : "https://oauth2.viktorbarzin.me/oauth2/start?rd=/redirect/$http_host$escaped_request_uri"
"nginx.ingress.kubernetes.io/ssl-passthrough" : true
}
}