├── Dockerfile ├── LICENSE ├── README.md ├── generic_api.py ├── ghost ├── ghost-1.yaml ├── ghost-2.yaml ├── ghost-thirdparty.yaml └── manifests │ ├── 0-namespace.yaml │ ├── configmap.yaml │ ├── deployment.yaml │ ├── ingress.yaml │ └── service.yaml └── opy.py /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantswarm/operator-example-python/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantswarm/operator-example-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantswarm/operator-example-python/HEAD/README.md -------------------------------------------------------------------------------- /generic_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantswarm/operator-example-python/HEAD/generic_api.py -------------------------------------------------------------------------------- /ghost/ghost-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantswarm/operator-example-python/HEAD/ghost/ghost-1.yaml -------------------------------------------------------------------------------- /ghost/ghost-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantswarm/operator-example-python/HEAD/ghost/ghost-2.yaml -------------------------------------------------------------------------------- /ghost/ghost-thirdparty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantswarm/operator-example-python/HEAD/ghost/ghost-thirdparty.yaml -------------------------------------------------------------------------------- /ghost/manifests/0-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantswarm/operator-example-python/HEAD/ghost/manifests/0-namespace.yaml -------------------------------------------------------------------------------- /ghost/manifests/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantswarm/operator-example-python/HEAD/ghost/manifests/configmap.yaml -------------------------------------------------------------------------------- /ghost/manifests/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantswarm/operator-example-python/HEAD/ghost/manifests/deployment.yaml -------------------------------------------------------------------------------- /ghost/manifests/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantswarm/operator-example-python/HEAD/ghost/manifests/ingress.yaml -------------------------------------------------------------------------------- /ghost/manifests/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantswarm/operator-example-python/HEAD/ghost/manifests/service.yaml -------------------------------------------------------------------------------- /opy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantswarm/operator-example-python/HEAD/opy.py --------------------------------------------------------------------------------