├── LICENSE ├── README.md ├── n8n-claim0-persistentvolumeclaim.yaml ├── n8n-deployment.yaml ├── n8n-service.yaml ├── namespace.yaml ├── postgres-claim0-persistentvolumeclaim.yaml ├── postgres-configmap.yaml ├── postgres-deployment.yaml ├── postgres-secret.yaml └── postgres-service.yaml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n8n-io/n8n-kubernetes-hosting/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n8n-io/n8n-kubernetes-hosting/HEAD/README.md -------------------------------------------------------------------------------- /n8n-claim0-persistentvolumeclaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n8n-io/n8n-kubernetes-hosting/HEAD/n8n-claim0-persistentvolumeclaim.yaml -------------------------------------------------------------------------------- /n8n-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n8n-io/n8n-kubernetes-hosting/HEAD/n8n-deployment.yaml -------------------------------------------------------------------------------- /n8n-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n8n-io/n8n-kubernetes-hosting/HEAD/n8n-service.yaml -------------------------------------------------------------------------------- /namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: n8n 5 | -------------------------------------------------------------------------------- /postgres-claim0-persistentvolumeclaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n8n-io/n8n-kubernetes-hosting/HEAD/postgres-claim0-persistentvolumeclaim.yaml -------------------------------------------------------------------------------- /postgres-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n8n-io/n8n-kubernetes-hosting/HEAD/postgres-configmap.yaml -------------------------------------------------------------------------------- /postgres-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n8n-io/n8n-kubernetes-hosting/HEAD/postgres-deployment.yaml -------------------------------------------------------------------------------- /postgres-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n8n-io/n8n-kubernetes-hosting/HEAD/postgres-secret.yaml -------------------------------------------------------------------------------- /postgres-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n8n-io/n8n-kubernetes-hosting/HEAD/postgres-service.yaml --------------------------------------------------------------------------------