This file contains 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
# | |
# Note: this does not work right out of the box yet | |
# - required: manual run of `/var/local/ralph/docker-entrypoint.sh init` (maybe use initContainer) | |
# - required: manual run of `ralphctl collectstatic` to deploy static files to shared volume for nginx (maybe use lifecycle postStart) | |
# | |
apiVersion: extensions/v1beta1 | |
kind: Deployment | |
metadata: | |
name: ralph | |
labels: |
This file contains 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
# | |
# Netbox deployment manifest for Kubernetes. | |
# Assumes pre-installed postgres | |
# | |
apiVersion: extensions/v1beta1 | |
kind: Deployment | |
metadata: | |
name: netbox | |
labels: | |
app: netbox |
This file contains 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: extensions/v1beta1 | |
kind: DaemonSet | |
metadata: | |
name: filebeat | |
namespace: kube-system | |
labels: | |
k8s-app: filebeat | |
spec: | |
template: | |
metadata: |