Skip to content

Commit

Permalink
adding ks8
Browse files Browse the repository at this point in the history
  • Loading branch information
robinmordasiewicz committed Aug 5, 2024
1 parent 64f2a05 commit 297aa91
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
1 change: 0 additions & 1 deletion manifests/apps/ollama/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@ kind: Kustomization
resources:
- HelmRelease.yaml
- HelmRepository.yaml
- namespace.yaml
- rbac.yaml
17 changes: 17 additions & 0 deletions terraform/spoke-k8s_cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,23 @@ resource "null_resource" "secret" {
name: fortiweb-login-secret
namespace: dvwa
type: Opaque
data:
username: $(echo -n "${random_pet.admin_username.id}" | base64)
password: $(echo -n "${random_password.admin_password.result}" | base64)
---
apiVersion: v1
kind: Namespace
metadata:
name: ollama
labels:
name: ollama
---
apiVersion: v1
kind: Secret
metadata:
name: fortiweb-login-secret
namespace: ollama
type: Opaque
data:
username: $(echo -n "${random_pet.admin_username.id}" | base64)
password: $(echo -n "${random_password.admin_password.result}" | base64)
Expand Down

0 comments on commit 297aa91

Please sign in to comment.