This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Itstool < Formula | |
| desc "Make XML documents translatable through PO files" | |
| homepage "https://itstool.org/" | |
| url "https://files.itstool.org/itstool/itstool-2.0.7.tar.bz2" | |
| sha256 "6b9a7cd29a12bb95598f5750e8763cee78836a1a207f85b74d8b3275b27e87ca" | |
| license "GPL-3.0-or-later" | |
| revision 2 | |
| livecheck do | |
| url "https://itstool.org/download.html" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class PgCron < Formula | |
| desc "Run periodic jobs in PostgreSQL 17" | |
| homepage "https://github.com/citusdata/pg_cron" | |
| url "https://github.com/citusdata/pg_cron/archive/refs/tags/v1.6.7.tar.gz" | |
| sha256 "d950bc29155f31017567e23a31d268ff672e98276c0e9d062512fb7870351f03" | |
| license "PostgreSQL" | |
| bottle do | |
| rebuild 1 | |
| sha256 cellar: :any, arm64_tahoe: "09735afcd85669a8b3c460864d987b45a85efa861b23d13d091d0a3044b9d65e" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "apps": [ | |
| { | |
| "id": "io.ente.photos.independent", | |
| "url": "https://github.com/ente-io/ente", | |
| "author": "ente-io", | |
| "name": "Ente Photos", | |
| "installedVersion": "photos-v1.0.0", | |
| "latestVersion": "photos-v1.0.0", | |
| "apkUrls": "[[\"ente-photos-v1.0.0.apk\",\"https://api.github.com/repos/ente-io/ente/releases/assets/240872214\"]]", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: storage.k8s.io/v1 | |
| kind: StorageClass | |
| metadata: | |
| name: n8n-local-path | |
| provisioner: rancher.io/local-path | |
| parameters: | |
| pathPattern: "{{ .PVC.Namespace }}/{{ .PVC.Name }}" | |
| volumeBindingMode: WaitForFirstConsumer | |
| reclaimPolicy: Retain |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: v1 | |
| kind: ServiceAccount | |
| metadata: | |
| name: admin-user | |
| namespace: kubernetes-dashboard | |
| --- | |
| apiVersion: rbac.authorization.k8s.io/v1 | |
| kind: ClusterRoleBinding | |
| metadata: | |
| name: admin-user |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| app: | |
| ingress: | |
| enabled: true | |
| hosts: | |
| # Keep 'localhost' host only if you want to access Dashboard using 'kubectl port-forward ...' on: https://localhost:8443 | |
| # - localhost | |
| # - kubernetes.dashboard.domain.com | |
| - HOSTNAME | |
| ingressClassName: nginx | |
| issuer: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Custom error page configMap | |
| --- | |
| apiVersion: v1 | |
| kind: ConfigMap | |
| metadata: | |
| name: custom-error-pages | |
| data: | |
| 404: | | |
| <!DOCTYPE html> | |
| <html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| controller: | |
| extraArgs: | |
| default-ssl-certificate: "cert-manager/app-tls" | |
| service: | |
| externalTrafficPolicy: Local | |
| config: | |
| allow-snippet-annotations: "true" | |
| annotations-risk-level: Critical | |
| block-user-agents: '~*Go-http-client.*,~*python.*,~*Custom-AsyncHttpClient.*,~*l9explore.*' | |
| custom-http-errors: "404,500" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # helm repo add oauth2-proxy https://oauth2-proxy.github.io/manifests | |
| # helm repo update | |
| # Generate cookie-secret by running : openssl rand -base64 32 | head -c 32 | base64 . Add to config.cookieSecret. | |
| # Add client secret to config.clientSecret | |
| # helm install oauth2-proxy oauth2-proxy/oauth2-proxy --values oauth2-proxy-values.yaml | |
| config: | |
| cookieName: MY_COOKIE | |
| clientID: MY_CLIENT_ID # Replace with your provider's client ID | |
| configFile: | | |
| provider = "MY_PROVIDER" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE USER $NEW_USER WITH PASSWORD '$NEW_PASSWORD' NOSUPERUSER CREATEDB CREATEROLE LOGIN; | |
| GRANT USAGE, CREATE ON SCHEMA public TO app; | |
| GRANT SELECT, INSERT, UPDATE, DELETE ON ALL TABLES IN SCHEMA public TO $NEW_USER; | |
| ALTER DEFAULT PRIVILEGES IN SCHEMA public GRANT SELECT, INSERT, UPDATE, DELETE ON TABLES TO $NEW_USER; | |
| -- Grant Sequence permissions | |
| GRANT USAGE ON ALL SEQUENCES IN SCHEMA public TO $NEW_USER; | |
| ALTER DEFAULT PRIVILEGES IN SCHEMA public GRANT USAGE ON SEQUENCES TO $NEW_USER; | |
| -- Grant existing users access to $NEW_USER role/user (Optional) | |
| GRANT $NEW_USER to postgres; | |
| GRANT $NEW_USER to pgadmin; |
NewerOlder