this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Deploy proxitok

+28 -27
-15
archive/proxitok/app/configmap.yaml
··· 1 - --- 2 - apiVersion: v1 3 - kind: ConfigMap 4 - metadata: 5 - name: proxitok-configmap 6 - namespace: default 7 - data: 8 - LATTE_CACHE: /cache 9 - API_CACHE: redis 10 - REDIS_HOST: proxitok-redis.default.svc.cluster.local 11 - REDIS_PORT: "6379" 12 - API_SIGNER: remote 13 - API_SIGNER_URL: http://proxitok-signer.default.svc.cluster.local:8080/signature 14 - API_FORCE_LEGACY: "1" 15 - APP_URL: https://proxitok.skylab.fi
+2 -2
archive/proxitok/app/redis/helm-release.yaml cluster/apps/services/proxitok/app/redis/helm-release.yaml
··· 3 3 kind: HelmRelease 4 4 metadata: 5 5 name: &app proxitok-redis 6 - namespace: default 6 + namespace: services 7 7 spec: 8 8 interval: 15m 9 9 chart: 10 10 spec: 11 11 chart: app-template 12 - version: 1.2.1 12 + version: 1.3.1 13 13 sourceRef: 14 14 kind: HelmRepository 15 15 name: bjw-s-charts
archive/proxitok/app/redis/kustomization.yaml cluster/apps/services/proxitok/app/redis/kustomization.yaml
+2 -2
archive/proxitok/app/signer/helm-release.yaml cluster/apps/services/proxitok/app/signer/helm-release.yaml
··· 3 3 kind: HelmRelease 4 4 metadata: 5 5 name: proxitok-signer 6 - namespace: default 6 + namespace: services 7 7 spec: 8 8 interval: 15m 9 9 chart: 10 10 spec: 11 11 chart: app-template 12 - version: 1.2.1 12 + version: 1.3.1 13 13 sourceRef: 14 14 kind: HelmRepository 15 15 name: bjw-s-charts
archive/proxitok/app/signer/kustomization.yaml cluster/apps/services/proxitok/app/signer/kustomization.yaml
+2 -2
archive/proxitok/app/web/helm-release.yaml cluster/apps/services/proxitok/app/web/helm-release.yaml
··· 3 3 kind: HelmRelease 4 4 metadata: 5 5 name: proxitok-web 6 - namespace: default 6 + namespace: services 7 7 spec: 8 8 interval: 15m 9 9 chart: 10 10 spec: 11 11 chart: app-template 12 - version: 1.2.1 12 + version: 1.3.1 13 13 sourceRef: 14 14 kind: HelmRepository 15 15 name: bjw-s-charts
archive/proxitok/app/web/kustomization.yaml cluster/apps/services/proxitok/app/web/kustomization.yaml
+5 -5
archive/proxitok/ks.yaml cluster/apps/services/proxitok/ks.yaml
··· 3 3 apiVersion: kustomize.toolkit.fluxcd.io/v1beta2 4 4 kind: Kustomization 5 5 metadata: 6 - name: cluster-apps-proxitok-app 6 + name: cluster-apps-services-proxitok-app 7 7 namespace: flux-system 8 8 labels: 9 9 substitution.flux.home.arpa/enabled: "true" ··· 12 12 prune: true 13 13 sourceRef: 14 14 kind: GitRepository 15 - name: flux-cluster 15 + name: cluster 16 16 healthChecks: 17 17 - apiVersion: helm.toolkit.fluxcd.io/v2beta1 18 18 kind: HelmRelease 19 19 name: proxitok-signer 20 - namespace: default 20 + namespace: services 21 21 - apiVersion: helm.toolkit.fluxcd.io/v2beta1 22 22 kind: HelmRelease 23 23 name: proxitok-redis 24 - namespace: default 24 + namespace: services 25 25 - apiVersion: helm.toolkit.fluxcd.io/v2beta1 26 26 kind: HelmRelease 27 27 name: proxitok-web 28 - namespace: default 28 + namespace: services 29 29 interval: 30m 30 30 retryInterval: 1m 31 31 timeout: 5m
+2 -1
cluster/apps/services/kustomization.yaml
··· 2 2 kind: Kustomization 3 3 resources: 4 4 - ns.yaml 5 - - nitter/ks.yaml 5 + - nitter/ks.yaml 6 + - proxitok/ks.yaml
+15
cluster/apps/services/proxitok/app/configmap.yaml
··· 1 + --- 2 + apiVersion: v1 3 + kind: ConfigMap 4 + metadata: 5 + name: proxitok-configmap 6 + namespace: services 7 + data: 8 + LATTE_CACHE: /cache 9 + API_CACHE: redis 10 + REDIS_HOST: proxitok-redis.services.svc.cluster.local 11 + REDIS_PORT: "6379" 12 + API_SIGNER: remote 13 + API_SIGNER_URL: http://proxitok-signer.services.svc.cluster.local:8080/signature 14 + API_FORCE_LEGACY: "1" 15 + APP_URL: https://proxitok.skylab.fi