Update renovate/renovate Docker tag to v41.169.1 - abandoned #97

Closed
Renovate wants to merge 282 commits from renovate/renovate-renovate-41.x into fresh-start
4 changed files with 48 additions and 0 deletions
Showing only changes of commit 87f2446cd1 - Show all commits

View File

@@ -3,5 +3,6 @@ kind: Kustomization
resources:
- namespace.yaml
- release.yaml
- secret.yaml
- auth-proxy.yaml
- ingress.yaml

38
apps/ollama/secret.yaml Normal file
View File

@@ -0,0 +1,38 @@
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: ollama-proxy
namespace: ollama
---
apiVersion: secrets.hashicorp.com/v1beta1
kind: VaultAuth
metadata:
name: ollama
namespace: ollama
spec:
method: kubernetes
mount: kubernetes
kubernetes:
role: ollama-proxy
serviceAccount: ollama-proxy
---
apiVersion: secrets.hashicorp.com/v1beta1
kind: VaultStaticSecret
metadata:
name: ollama-api-key
namespace: ollama
spec:
type: kv-v2
mount: secret
path: ollama
destination:
create: true
name: ollama-api-key
type: Opaque
transformation:
excludeRaw: true
vaultAuthRef: ollama

View File

@@ -0,0 +1,6 @@
bound_service_account_names:
- ollama-proxy
bound_service_account_namespaces:
- ollama
token_policies:
- ollama

3
vault/policy/ollama.hcl Normal file
View File

@@ -0,0 +1,3 @@
path "secret/data/ollama" {
capabilities = ["read"]
}