apps: add bsky-pds chart
Anirudh Oppiliappan x@icyphox.sh
Mon, 04 Nov 2024 00:50:43 +0200
3 files changed,
35 insertions(+),
1 deletions(-)
A
charts/bsky-pds.yaml
@@ -0,0 +1,33 @@
+apiVersion: helm.cattle.io/v1 +kind: HelmChart +metadata: + name: bsky-pds + namespace: default +spec: + repo: https://charts.nerkho.ch + chart: bluesky-pds + targetNamespace: default + valuesContent: |- + fullnameOverride: bsky-pds + image: + tag: 0.4.67 + pds: + config: + hostname: pds.icyphox.sh + secrets: + existingSecret: pds + ingress: + enabled: true + className: nginx + annotations: + cert-manager.io/cluster-issuer: letsencrypt-prod + nginx.ingress.kubernetes.io/ssl-redirect: "true" + hosts: + - host: pds.icyphox.sh + paths: + - path: / + pathType: Prefix + tls: + - secretName: pds-icyphox-sh-tls + hosts: + - pds.icyphox.sh
M
flake.nix
→
flake.nix
@@ -7,7 +7,7 @@ , nixpkgs
, }: let - supportedSystems = [ "x86_64-linux" "aarch64-linux" ]; + supportedSystems = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" ]; forAllSystems = nixpkgs.lib.genAttrs supportedSystems; nixpkgsFor = forAllSystems (system: import nixpkgs { inherit system; }); in