Remove lemmy for fixes

This commit is contained in:
Amarpreet Minhas 2023-07-16 19:11:26 +00:00
parent 5ad6d3b6d3
commit 7babfe563f
3 changed files with 7 additions and 37 deletions

View file

@ -60,8 +60,8 @@ helmApps:
repoURL: https://k8s-at-home.com/charts/ repoURL: https://k8s-at-home.com/charts/
chart: wallabag chart: wallabag
revision: 7.1.2 revision: 7.1.2
- app: lemmy # - app: lemmy
namespace: lemmy # namespace: lemmy
repoURL: https://ananace.gitlab.io/charts # repoURL: https://ananace.gitlab.io/charts
chart: lemmy # chart: lemmy
revision: 0.4.1 # revision: 0.4.1

View file

@ -60,6 +60,7 @@ postgresql:
auth: auth:
username: lemmy username: lemmy
database: lemmy database: lemmy
persistence: persistence:
enabled: true enabled: true
existingClaim: "data-lemmy-postgresql-0" existingClaim: "data-lemmy-postgresql-0"

View file

@ -1,6 +1,6 @@
--- ---
apiVersion: v1 apiVersion: v1
kind: namespace kind: Namespace
metadata: metadata:
name: lemmy name: lemmy
... ...
@ -18,34 +18,3 @@ spec:
requests: requests:
storage: 20Gi storage: 20Gi
... ...
---
apiVersion: v1
kind: ServiceAccount
metadata:
namespace: lemmy
name: lemmy
...
---
apiVersion: v1
kind: Secret
type: kubernetes.io/service-account-token
metadata:
name: serviceaccounttoken
namespace: lemmy
annotations:
kubernetes.io/service-account.name: "lemmy"
...
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: lemmy-tokenreview-binding
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: system:auth-delegator
subjects:
- kind: ServiceAccount
name: lemmy
namespace: lemmy
...