Update Immich Cluster Role

This commit is contained in:
Daniel Cosme
2026-04-30 18:33:33 -04:00
parent 530684f48c
commit 93e4a0aeed
4 changed files with 12 additions and 10 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ metadata:
name: linking name: linking
namespace: linkding namespace: linkding
resources: resources:
- pvc.yaml
- deployment.yaml
- namespace.yaml - namespace.yaml
- srv.yaml - srv.yaml
- pvc.yaml
- deployment.yaml
@@ -8,7 +8,8 @@ spec:
instances: 3 instances: 3
managed: managed:
roles: roles:
- name: immich - login: true
name: immich
passwordSecret: passwordSecret:
name: immich name: immich
postgresql: postgresql:
@@ -7,13 +7,13 @@ resources:
- controller-cluster-role.yaml - controller-cluster-role.yaml
- controller-binding.yaml - controller-binding.yaml
- node-cluster-role.yaml - node-cluster-role.yaml
- CSIDriver.yaml
- config.yaml
- node-service-account.yaml
- node-binding.yaml - node-binding.yaml
- node-deamonset.yaml
- nfs-storage-class.yaml
- iscsi-storage-class.yaml - iscsi-storage-class.yaml
- namespace.yaml - namespace.yaml
- controller-deployment.yaml
- controller-service-account.yaml - controller-service-account.yaml
- node-service-account.yaml
- node-deamonset.yaml
- CSIDriver.yaml
- config.yaml
- nfs-storage-class.yaml
- controller-deployment.yaml
+1
View File
@@ -26,6 +26,7 @@ func Cluster() pg.Cluster {
Roles: []pg.RoleConfiguration{ Roles: []pg.RoleConfiguration{
{ {
Name: root.Immich.Name, Name: root.Immich.Name,
Login: true,
PasswordSecret: &pg.LocalObjectReference{ PasswordSecret: &pg.LocalObjectReference{
Name: immich.Secret.Name, Name: immich.Secret.Name,
}, },