├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── deprecated └── honeycomb-agent │ ├── README.md │ ├── examples │ ├── sidecar-raw-deployment-object │ │ ├── generated │ │ │ └── nginx-deployment.json │ │ ├── nginx-deployment.jsonnet │ │ └── nginx-service.json │ └── using-daemonset-builder │ │ ├── generated │ │ ├── honeycomb-daemonset.json │ │ └── nginx-app.json │ │ ├── honeycomb-daemonset.jsonnet │ │ └── nginx-app.jsonnet │ └── honeycomb-agent.libsonnet ├── doc-gen └── main.go └── incubator ├── README.md ├── apache ├── README.md ├── apache.libsonnet ├── examples │ ├── apache.jsonnet │ └── generated.yaml ├── parts.yaml └── prototypes │ └── apache-simple.jsonnet ├── efk ├── efk.libsonnet ├── parts.yaml └── prototypes │ ├── elasticsearch-kibana.jsonnet │ └── fluentd-es-sidecar.jsonnet ├── mariadb ├── README.md ├── examples │ ├── generated.yaml │ └── maria.jsonnet ├── maria.libsonnet ├── parts.yaml └── prototypes │ └── maria-stateless.jsonnet ├── memcached ├── README.md ├── examples │ ├── generated.yaml │ └── memcached.jsonnet ├── memcached.libsonnet ├── parts.yaml └── prototypes │ └── memcached-simple.jsonnet ├── mongodb ├── README.md ├── examples │ ├── generated.yaml │ └── mongodb.jsonnet ├── mongodb.libsonnet ├── parts.yaml └── prototypes │ └── mongodb-simple.jsonnet ├── mysql ├── README.md ├── examples │ ├── generated.yaml │ └── mysql.jsonnet ├── mysql.libsonnet ├── parts.yaml └── prototypes │ └── simple-mysql.jsonnet ├── nginx ├── README.md ├── examples │ ├── generated.yaml │ └── nginx.jsonnet ├── nginx.libsonnet ├── parts.yaml └── prototypes │ ├── nginx-server-block.jsonnet │ └── nginx-simple.jsonnet ├── node ├── README.md ├── examples │ └── generated.yaml ├── nodejs.libsonnet ├── parts.yaml └── prototypes │ ├── nodejs-nonpersistent.jsonnet │ └── nodejs-simple.jsonnet ├── postgres ├── README.md ├── examples │ ├── generated.yaml │ └── postgres.jsonnet ├── parts.yaml ├── postgres.libsonnet └── prototypes │ └── postgres-simple.jsonnet ├── redis ├── README.md ├── examples │ ├── generated.yaml │ └── redis.jsonnet ├── parts.yaml ├── prototypes │ ├── redis-all-features.jsonnet │ ├── redis-persistent.jsonnet │ └── redis-stateless.jsonnet └── redis.libsonnet ├── registry.yaml └── tomcat ├── README.md ├── examples ├── generated.yaml └── tomcat.jsonnet ├── parts.yaml ├── prototypes ├── tomcat-persistent.jsonnet └── tomcat-stateless.jsonnet └── tomcat.libsonnet /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/README.md -------------------------------------------------------------------------------- /deprecated/honeycomb-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/deprecated/honeycomb-agent/README.md -------------------------------------------------------------------------------- /deprecated/honeycomb-agent/examples/sidecar-raw-deployment-object/generated/nginx-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/deprecated/honeycomb-agent/examples/sidecar-raw-deployment-object/generated/nginx-deployment.json -------------------------------------------------------------------------------- /deprecated/honeycomb-agent/examples/sidecar-raw-deployment-object/nginx-deployment.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/deprecated/honeycomb-agent/examples/sidecar-raw-deployment-object/nginx-deployment.jsonnet -------------------------------------------------------------------------------- /deprecated/honeycomb-agent/examples/sidecar-raw-deployment-object/nginx-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/deprecated/honeycomb-agent/examples/sidecar-raw-deployment-object/nginx-service.json -------------------------------------------------------------------------------- /deprecated/honeycomb-agent/examples/using-daemonset-builder/generated/honeycomb-daemonset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/deprecated/honeycomb-agent/examples/using-daemonset-builder/generated/honeycomb-daemonset.json -------------------------------------------------------------------------------- /deprecated/honeycomb-agent/examples/using-daemonset-builder/generated/nginx-app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/deprecated/honeycomb-agent/examples/using-daemonset-builder/generated/nginx-app.json -------------------------------------------------------------------------------- /deprecated/honeycomb-agent/examples/using-daemonset-builder/honeycomb-daemonset.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/deprecated/honeycomb-agent/examples/using-daemonset-builder/honeycomb-daemonset.jsonnet -------------------------------------------------------------------------------- /deprecated/honeycomb-agent/examples/using-daemonset-builder/nginx-app.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/deprecated/honeycomb-agent/examples/using-daemonset-builder/nginx-app.jsonnet -------------------------------------------------------------------------------- /deprecated/honeycomb-agent/honeycomb-agent.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/deprecated/honeycomb-agent/honeycomb-agent.libsonnet -------------------------------------------------------------------------------- /doc-gen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/doc-gen/main.go -------------------------------------------------------------------------------- /incubator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/README.md -------------------------------------------------------------------------------- /incubator/apache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/apache/README.md -------------------------------------------------------------------------------- /incubator/apache/apache.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/apache/apache.libsonnet -------------------------------------------------------------------------------- /incubator/apache/examples/apache.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/apache/examples/apache.jsonnet -------------------------------------------------------------------------------- /incubator/apache/examples/generated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/apache/examples/generated.yaml -------------------------------------------------------------------------------- /incubator/apache/parts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/apache/parts.yaml -------------------------------------------------------------------------------- /incubator/apache/prototypes/apache-simple.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/apache/prototypes/apache-simple.jsonnet -------------------------------------------------------------------------------- /incubator/efk/efk.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/efk/efk.libsonnet -------------------------------------------------------------------------------- /incubator/efk/parts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/efk/parts.yaml -------------------------------------------------------------------------------- /incubator/efk/prototypes/elasticsearch-kibana.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/efk/prototypes/elasticsearch-kibana.jsonnet -------------------------------------------------------------------------------- /incubator/efk/prototypes/fluentd-es-sidecar.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/efk/prototypes/fluentd-es-sidecar.jsonnet -------------------------------------------------------------------------------- /incubator/mariadb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/mariadb/README.md -------------------------------------------------------------------------------- /incubator/mariadb/examples/generated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/mariadb/examples/generated.yaml -------------------------------------------------------------------------------- /incubator/mariadb/examples/maria.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/mariadb/examples/maria.jsonnet -------------------------------------------------------------------------------- /incubator/mariadb/maria.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/mariadb/maria.libsonnet -------------------------------------------------------------------------------- /incubator/mariadb/parts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/mariadb/parts.yaml -------------------------------------------------------------------------------- /incubator/mariadb/prototypes/maria-stateless.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/mariadb/prototypes/maria-stateless.jsonnet -------------------------------------------------------------------------------- /incubator/memcached/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/memcached/README.md -------------------------------------------------------------------------------- /incubator/memcached/examples/generated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/memcached/examples/generated.yaml -------------------------------------------------------------------------------- /incubator/memcached/examples/memcached.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/memcached/examples/memcached.jsonnet -------------------------------------------------------------------------------- /incubator/memcached/memcached.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/memcached/memcached.libsonnet -------------------------------------------------------------------------------- /incubator/memcached/parts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/memcached/parts.yaml -------------------------------------------------------------------------------- /incubator/memcached/prototypes/memcached-simple.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/memcached/prototypes/memcached-simple.jsonnet -------------------------------------------------------------------------------- /incubator/mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/mongodb/README.md -------------------------------------------------------------------------------- /incubator/mongodb/examples/generated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/mongodb/examples/generated.yaml -------------------------------------------------------------------------------- /incubator/mongodb/examples/mongodb.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/mongodb/examples/mongodb.jsonnet -------------------------------------------------------------------------------- /incubator/mongodb/mongodb.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/mongodb/mongodb.libsonnet -------------------------------------------------------------------------------- /incubator/mongodb/parts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/mongodb/parts.yaml -------------------------------------------------------------------------------- /incubator/mongodb/prototypes/mongodb-simple.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/mongodb/prototypes/mongodb-simple.jsonnet -------------------------------------------------------------------------------- /incubator/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/mysql/README.md -------------------------------------------------------------------------------- /incubator/mysql/examples/generated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/mysql/examples/generated.yaml -------------------------------------------------------------------------------- /incubator/mysql/examples/mysql.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/mysql/examples/mysql.jsonnet -------------------------------------------------------------------------------- /incubator/mysql/mysql.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/mysql/mysql.libsonnet -------------------------------------------------------------------------------- /incubator/mysql/parts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/mysql/parts.yaml -------------------------------------------------------------------------------- /incubator/mysql/prototypes/simple-mysql.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/mysql/prototypes/simple-mysql.jsonnet -------------------------------------------------------------------------------- /incubator/nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/nginx/README.md -------------------------------------------------------------------------------- /incubator/nginx/examples/generated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/nginx/examples/generated.yaml -------------------------------------------------------------------------------- /incubator/nginx/examples/nginx.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/nginx/examples/nginx.jsonnet -------------------------------------------------------------------------------- /incubator/nginx/nginx.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/nginx/nginx.libsonnet -------------------------------------------------------------------------------- /incubator/nginx/parts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/nginx/parts.yaml -------------------------------------------------------------------------------- /incubator/nginx/prototypes/nginx-server-block.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/nginx/prototypes/nginx-server-block.jsonnet -------------------------------------------------------------------------------- /incubator/nginx/prototypes/nginx-simple.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/nginx/prototypes/nginx-simple.jsonnet -------------------------------------------------------------------------------- /incubator/node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/node/README.md -------------------------------------------------------------------------------- /incubator/node/examples/generated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/node/examples/generated.yaml -------------------------------------------------------------------------------- /incubator/node/nodejs.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/node/nodejs.libsonnet -------------------------------------------------------------------------------- /incubator/node/parts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/node/parts.yaml -------------------------------------------------------------------------------- /incubator/node/prototypes/nodejs-nonpersistent.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/node/prototypes/nodejs-nonpersistent.jsonnet -------------------------------------------------------------------------------- /incubator/node/prototypes/nodejs-simple.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/node/prototypes/nodejs-simple.jsonnet -------------------------------------------------------------------------------- /incubator/postgres/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/postgres/README.md -------------------------------------------------------------------------------- /incubator/postgres/examples/generated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/postgres/examples/generated.yaml -------------------------------------------------------------------------------- /incubator/postgres/examples/postgres.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/postgres/examples/postgres.jsonnet -------------------------------------------------------------------------------- /incubator/postgres/parts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/postgres/parts.yaml -------------------------------------------------------------------------------- /incubator/postgres/postgres.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/postgres/postgres.libsonnet -------------------------------------------------------------------------------- /incubator/postgres/prototypes/postgres-simple.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/postgres/prototypes/postgres-simple.jsonnet -------------------------------------------------------------------------------- /incubator/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/redis/README.md -------------------------------------------------------------------------------- /incubator/redis/examples/generated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/redis/examples/generated.yaml -------------------------------------------------------------------------------- /incubator/redis/examples/redis.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/redis/examples/redis.jsonnet -------------------------------------------------------------------------------- /incubator/redis/parts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/redis/parts.yaml -------------------------------------------------------------------------------- /incubator/redis/prototypes/redis-all-features.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/redis/prototypes/redis-all-features.jsonnet -------------------------------------------------------------------------------- /incubator/redis/prototypes/redis-persistent.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/redis/prototypes/redis-persistent.jsonnet -------------------------------------------------------------------------------- /incubator/redis/prototypes/redis-stateless.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/redis/prototypes/redis-stateless.jsonnet -------------------------------------------------------------------------------- /incubator/redis/redis.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/redis/redis.libsonnet -------------------------------------------------------------------------------- /incubator/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/registry.yaml -------------------------------------------------------------------------------- /incubator/tomcat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/tomcat/README.md -------------------------------------------------------------------------------- /incubator/tomcat/examples/generated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/tomcat/examples/generated.yaml -------------------------------------------------------------------------------- /incubator/tomcat/examples/tomcat.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/tomcat/examples/tomcat.jsonnet -------------------------------------------------------------------------------- /incubator/tomcat/parts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/tomcat/parts.yaml -------------------------------------------------------------------------------- /incubator/tomcat/prototypes/tomcat-persistent.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/tomcat/prototypes/tomcat-persistent.jsonnet -------------------------------------------------------------------------------- /incubator/tomcat/prototypes/tomcat-stateless.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/tomcat/prototypes/tomcat-stateless.jsonnet -------------------------------------------------------------------------------- /incubator/tomcat/tomcat.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksonnet/parts/HEAD/incubator/tomcat/tomcat.libsonnet --------------------------------------------------------------------------------