├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yml ├── .mergify.yml ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── api ├── client │ ├── artifact │ │ ├── artifacts.pb.go │ │ ├── bitbucket.pb.go │ │ ├── gcs.pb.go │ │ ├── github.pb.go │ │ ├── gitlab.pb.go │ │ ├── gitrepo.pb.go │ │ ├── helm.pb.go │ │ ├── http.pb.go │ │ ├── maven.pb.go │ │ ├── oracle.pb.go │ │ ├── s3.pb.go │ │ └── template.pb.go │ ├── canary │ │ ├── aws.pb.go │ │ ├── canary.pb.go │ │ ├── datadog.pb.go │ │ ├── gcs.pb.go │ │ ├── google.pb.go │ │ ├── newrelic.pb.go │ │ ├── prometheus.pb.go │ │ ├── s3.pb.go │ │ ├── signalfx.pb.go │ │ ├── stackdriver.pb.go │ │ └── supported_type.pb.go │ ├── ci │ │ ├── ci.pb.go │ │ ├── codebuild.pb.go │ │ ├── concourse.pb.go │ │ ├── gcb.pb.go │ │ ├── jenkins.pb.go │ │ ├── travis.pb.go │ │ └── wercker.pb.go │ ├── cloudprovider │ │ ├── appengine.pb.go │ │ ├── aws.pb.go │ │ ├── azure.pb.go │ │ ├── cloudfoundry.pb.go │ │ ├── dcos.pb.go │ │ ├── docker_registry.pb.go │ │ ├── ecs.pb.go │ │ ├── google.pb.go │ │ ├── huaweicloud.pb.go │ │ ├── kubernetes.pb.go │ │ ├── oracle.pb.go │ │ └── providers.pb.go │ ├── config │ │ ├── clouddriver.pb.go │ │ ├── config_files.pb.go │ │ ├── deck.pb.go │ │ ├── deck_env.pb.go │ │ ├── echo.pb.go │ │ ├── fiat.pb.go │ │ ├── front50.pb.go │ │ ├── gate.pb.go │ │ ├── halconfig.pb.go │ │ ├── igor.pb.go │ │ ├── kayenta.pb.go │ │ ├── managed_delivery.pb.go │ │ ├── monitoring.pb.go │ │ ├── orca.pb.go │ │ ├── rosco.pb.go │ │ ├── service_enabled.pb.go │ │ └── services.pb.go │ ├── features.pb.go │ ├── metricstores │ │ ├── datadog.pb.go │ │ ├── metricstores.pb.go │ │ ├── newrelic.pb.go │ │ ├── prometheus.pb.go │ │ └── stackdriver.pb.go │ ├── notification │ │ ├── bearychat.pb.go │ │ ├── email.pb.go │ │ ├── github_status.pb.go │ │ ├── google_chat.pb.go │ │ ├── microsoft_teams.pb.go │ │ ├── notifications.pb.go │ │ ├── pubsub.pb.go │ │ ├── slack.pb.go │ │ └── twilio.pb.go │ ├── permissions.pb.go │ ├── pubsub │ │ ├── google.pb.go │ │ └── pubsub.pb.go │ ├── repository │ │ ├── artifactory.pb.go │ │ └── repository.pb.go │ ├── security │ │ ├── authn │ │ │ └── authn.pb.go │ │ ├── authz │ │ │ └── authz.pb.go │ │ ├── security.pb.go │ │ ├── ssl.pb.go │ │ └── trust_store.pb.go │ ├── spinnaker │ │ └── extensibility.pb.go │ ├── stats.pb.go │ └── storage │ │ ├── azs.pb.go │ │ ├── gcs.pb.go │ │ ├── oracle.pb.go │ │ ├── persistent_storage.pb.go │ │ ├── s3.pb.go │ │ └── sql.pb.go └── proto │ ├── artifact │ ├── artifacts.proto │ ├── bitbucket.proto │ ├── gcs.proto │ ├── github.proto │ ├── gitlab.proto │ ├── gitrepo.proto │ ├── helm.proto │ ├── http.proto │ ├── maven.proto │ ├── oracle.proto │ ├── s3.proto │ └── template.proto │ ├── canary │ ├── aws.proto │ ├── canary.proto │ ├── datadog.proto │ ├── gcs.proto │ ├── google.proto │ ├── newrelic.proto │ ├── prometheus.proto │ ├── s3.proto │ ├── signalfx.proto │ ├── stackdriver.proto │ └── supported_type.proto │ ├── ci │ ├── ci.proto │ ├── codebuild.proto │ ├── concourse.proto │ ├── gcb.proto │ ├── jenkins.proto │ ├── travis.proto │ └── wercker.proto │ ├── cloudprovider │ ├── appengine.proto │ ├── aws.proto │ ├── azure.proto │ ├── cloudfoundry.proto │ ├── dcos.proto │ ├── docker_registry.proto │ ├── ecs.proto │ ├── google.proto │ ├── huaweicloud.proto │ ├── kubernetes.proto │ ├── oracle.proto │ └── providers.proto │ ├── config │ ├── clouddriver.proto │ ├── config_files.proto │ ├── deck.proto │ ├── deck_env.proto │ ├── echo.proto │ ├── fiat.proto │ ├── front50.proto │ ├── gate.proto │ ├── halconfig.proto │ ├── igor.proto │ ├── kayenta.proto │ ├── managed_delivery.proto │ ├── monitoring.proto │ ├── orca.proto │ ├── rosco.proto │ ├── service_enabled.proto │ └── services.proto │ ├── features.proto │ ├── metricstores │ ├── datadog.proto │ ├── metricstores.proto │ ├── newrelic.proto │ ├── prometheus.proto │ └── stackdriver.proto │ ├── notification │ ├── bearychat.proto │ ├── email.proto │ ├── github_status.proto │ ├── google_chat.proto │ ├── microsoft_teams.proto │ ├── notifications.proto │ ├── pubsub.proto │ ├── slack.proto │ └── twilio.proto │ ├── permissions.proto │ ├── pubsub │ ├── google.proto │ └── pubsub.proto │ ├── repository │ ├── artifactory.proto │ └── repository.proto │ ├── security │ ├── authn │ │ └── authn.proto │ ├── authz │ │ └── authz.proto │ ├── security.proto │ ├── ssl.proto │ └── trust_store.proto │ ├── spinnaker │ └── extensibility.proto │ ├── stats.proto │ └── storage │ ├── azs.proto │ ├── gcs.proto │ ├── oracle.proto │ ├── persistent_storage.proto │ ├── s3.proto │ └── sql.proto ├── cmd ├── generate.go ├── plugins.go ├── root.go ├── validate-plugins.go └── version.go ├── docs └── docs.md ├── go.mod ├── go.sum ├── internal ├── convert │ ├── clouddriver.go │ ├── clouddriver_test.go │ ├── convert_test.go │ ├── deck.go │ ├── deck_env.go │ ├── deck_env_test.go │ ├── deck_test.go │ ├── echo.go │ ├── echo_test.go │ ├── fiat.go │ ├── fiat_test.go │ ├── front50.go │ ├── front50_test.go │ ├── gate.go │ ├── gate_test.go │ ├── igor.go │ ├── igor_test.go │ ├── kayenta.go │ ├── kayenta_test.go │ ├── keel.go │ ├── keel_test.go │ ├── monitoring.go │ ├── monitoring_test.go │ ├── orca.go │ ├── orca_test.go │ ├── rosco.go │ └── rosco_test.go ├── fileio │ └── fileio.go ├── prototest │ └── prototest.go ├── protoyaml │ └── protoyaml.go ├── serializer │ └── serializer.go └── validate │ ├── validate.go │ └── validate_test.go ├── main.go ├── migration └── README.md ├── pkg ├── plugins │ ├── validate.go │ └── validate_test.go ├── transform │ ├── transform.go │ └── transform_test.go └── version │ └── version.go └── testdata ├── clouddriver.yml ├── deck-env.yml ├── deck.yml ├── echo.yml ├── fiat.yml ├── front50.yml ├── gate.yml ├── halconfig.yml ├── halconfig_with_plugins.yml ├── igor.yml ├── kayenta.yml ├── keel.yml ├── orca.yml ├── rosco.yml └── spinnaker-monitoring.yml /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pb.go linguist-generated=true 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.iml 3 | kleat 4 | -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/.mergify.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @ncknt @german-muzquiz 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/README.md -------------------------------------------------------------------------------- /api/client/artifact/artifacts.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/artifact/artifacts.pb.go -------------------------------------------------------------------------------- /api/client/artifact/bitbucket.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/artifact/bitbucket.pb.go -------------------------------------------------------------------------------- /api/client/artifact/gcs.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/artifact/gcs.pb.go -------------------------------------------------------------------------------- /api/client/artifact/github.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/artifact/github.pb.go -------------------------------------------------------------------------------- /api/client/artifact/gitlab.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/artifact/gitlab.pb.go -------------------------------------------------------------------------------- /api/client/artifact/gitrepo.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/artifact/gitrepo.pb.go -------------------------------------------------------------------------------- /api/client/artifact/helm.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/artifact/helm.pb.go -------------------------------------------------------------------------------- /api/client/artifact/http.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/artifact/http.pb.go -------------------------------------------------------------------------------- /api/client/artifact/maven.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/artifact/maven.pb.go -------------------------------------------------------------------------------- /api/client/artifact/oracle.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/artifact/oracle.pb.go -------------------------------------------------------------------------------- /api/client/artifact/s3.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/artifact/s3.pb.go -------------------------------------------------------------------------------- /api/client/artifact/template.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/artifact/template.pb.go -------------------------------------------------------------------------------- /api/client/canary/aws.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/canary/aws.pb.go -------------------------------------------------------------------------------- /api/client/canary/canary.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/canary/canary.pb.go -------------------------------------------------------------------------------- /api/client/canary/datadog.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/canary/datadog.pb.go -------------------------------------------------------------------------------- /api/client/canary/gcs.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/canary/gcs.pb.go -------------------------------------------------------------------------------- /api/client/canary/google.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/canary/google.pb.go -------------------------------------------------------------------------------- /api/client/canary/newrelic.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/canary/newrelic.pb.go -------------------------------------------------------------------------------- /api/client/canary/prometheus.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/canary/prometheus.pb.go -------------------------------------------------------------------------------- /api/client/canary/s3.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/canary/s3.pb.go -------------------------------------------------------------------------------- /api/client/canary/signalfx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/canary/signalfx.pb.go -------------------------------------------------------------------------------- /api/client/canary/stackdriver.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/canary/stackdriver.pb.go -------------------------------------------------------------------------------- /api/client/canary/supported_type.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/canary/supported_type.pb.go -------------------------------------------------------------------------------- /api/client/ci/ci.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/ci/ci.pb.go -------------------------------------------------------------------------------- /api/client/ci/codebuild.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/ci/codebuild.pb.go -------------------------------------------------------------------------------- /api/client/ci/concourse.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/ci/concourse.pb.go -------------------------------------------------------------------------------- /api/client/ci/gcb.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/ci/gcb.pb.go -------------------------------------------------------------------------------- /api/client/ci/jenkins.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/ci/jenkins.pb.go -------------------------------------------------------------------------------- /api/client/ci/travis.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/ci/travis.pb.go -------------------------------------------------------------------------------- /api/client/ci/wercker.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/ci/wercker.pb.go -------------------------------------------------------------------------------- /api/client/cloudprovider/appengine.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/cloudprovider/appengine.pb.go -------------------------------------------------------------------------------- /api/client/cloudprovider/aws.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/cloudprovider/aws.pb.go -------------------------------------------------------------------------------- /api/client/cloudprovider/azure.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/cloudprovider/azure.pb.go -------------------------------------------------------------------------------- /api/client/cloudprovider/cloudfoundry.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/cloudprovider/cloudfoundry.pb.go -------------------------------------------------------------------------------- /api/client/cloudprovider/dcos.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/cloudprovider/dcos.pb.go -------------------------------------------------------------------------------- /api/client/cloudprovider/docker_registry.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/cloudprovider/docker_registry.pb.go -------------------------------------------------------------------------------- /api/client/cloudprovider/ecs.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/cloudprovider/ecs.pb.go -------------------------------------------------------------------------------- /api/client/cloudprovider/google.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/cloudprovider/google.pb.go -------------------------------------------------------------------------------- /api/client/cloudprovider/huaweicloud.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/cloudprovider/huaweicloud.pb.go -------------------------------------------------------------------------------- /api/client/cloudprovider/kubernetes.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/cloudprovider/kubernetes.pb.go -------------------------------------------------------------------------------- /api/client/cloudprovider/oracle.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/cloudprovider/oracle.pb.go -------------------------------------------------------------------------------- /api/client/cloudprovider/providers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/cloudprovider/providers.pb.go -------------------------------------------------------------------------------- /api/client/config/clouddriver.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/config/clouddriver.pb.go -------------------------------------------------------------------------------- /api/client/config/config_files.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/config/config_files.pb.go -------------------------------------------------------------------------------- /api/client/config/deck.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/config/deck.pb.go -------------------------------------------------------------------------------- /api/client/config/deck_env.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/config/deck_env.pb.go -------------------------------------------------------------------------------- /api/client/config/echo.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/config/echo.pb.go -------------------------------------------------------------------------------- /api/client/config/fiat.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/config/fiat.pb.go -------------------------------------------------------------------------------- /api/client/config/front50.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/config/front50.pb.go -------------------------------------------------------------------------------- /api/client/config/gate.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/config/gate.pb.go -------------------------------------------------------------------------------- /api/client/config/halconfig.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/config/halconfig.pb.go -------------------------------------------------------------------------------- /api/client/config/igor.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/config/igor.pb.go -------------------------------------------------------------------------------- /api/client/config/kayenta.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/config/kayenta.pb.go -------------------------------------------------------------------------------- /api/client/config/managed_delivery.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/config/managed_delivery.pb.go -------------------------------------------------------------------------------- /api/client/config/monitoring.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/config/monitoring.pb.go -------------------------------------------------------------------------------- /api/client/config/orca.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/config/orca.pb.go -------------------------------------------------------------------------------- /api/client/config/rosco.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/config/rosco.pb.go -------------------------------------------------------------------------------- /api/client/config/service_enabled.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/config/service_enabled.pb.go -------------------------------------------------------------------------------- /api/client/config/services.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/config/services.pb.go -------------------------------------------------------------------------------- /api/client/features.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/features.pb.go -------------------------------------------------------------------------------- /api/client/metricstores/datadog.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/metricstores/datadog.pb.go -------------------------------------------------------------------------------- /api/client/metricstores/metricstores.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/metricstores/metricstores.pb.go -------------------------------------------------------------------------------- /api/client/metricstores/newrelic.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/metricstores/newrelic.pb.go -------------------------------------------------------------------------------- /api/client/metricstores/prometheus.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/metricstores/prometheus.pb.go -------------------------------------------------------------------------------- /api/client/metricstores/stackdriver.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/metricstores/stackdriver.pb.go -------------------------------------------------------------------------------- /api/client/notification/bearychat.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/notification/bearychat.pb.go -------------------------------------------------------------------------------- /api/client/notification/email.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/notification/email.pb.go -------------------------------------------------------------------------------- /api/client/notification/github_status.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/notification/github_status.pb.go -------------------------------------------------------------------------------- /api/client/notification/google_chat.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/notification/google_chat.pb.go -------------------------------------------------------------------------------- /api/client/notification/microsoft_teams.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/notification/microsoft_teams.pb.go -------------------------------------------------------------------------------- /api/client/notification/notifications.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/notification/notifications.pb.go -------------------------------------------------------------------------------- /api/client/notification/pubsub.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/notification/pubsub.pb.go -------------------------------------------------------------------------------- /api/client/notification/slack.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/notification/slack.pb.go -------------------------------------------------------------------------------- /api/client/notification/twilio.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/notification/twilio.pb.go -------------------------------------------------------------------------------- /api/client/permissions.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/permissions.pb.go -------------------------------------------------------------------------------- /api/client/pubsub/google.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/pubsub/google.pb.go -------------------------------------------------------------------------------- /api/client/pubsub/pubsub.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/pubsub/pubsub.pb.go -------------------------------------------------------------------------------- /api/client/repository/artifactory.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/repository/artifactory.pb.go -------------------------------------------------------------------------------- /api/client/repository/repository.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/repository/repository.pb.go -------------------------------------------------------------------------------- /api/client/security/authn/authn.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/security/authn/authn.pb.go -------------------------------------------------------------------------------- /api/client/security/authz/authz.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/security/authz/authz.pb.go -------------------------------------------------------------------------------- /api/client/security/security.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/security/security.pb.go -------------------------------------------------------------------------------- /api/client/security/ssl.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/security/ssl.pb.go -------------------------------------------------------------------------------- /api/client/security/trust_store.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/security/trust_store.pb.go -------------------------------------------------------------------------------- /api/client/spinnaker/extensibility.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/spinnaker/extensibility.pb.go -------------------------------------------------------------------------------- /api/client/stats.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/stats.pb.go -------------------------------------------------------------------------------- /api/client/storage/azs.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/storage/azs.pb.go -------------------------------------------------------------------------------- /api/client/storage/gcs.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/storage/gcs.pb.go -------------------------------------------------------------------------------- /api/client/storage/oracle.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/storage/oracle.pb.go -------------------------------------------------------------------------------- /api/client/storage/persistent_storage.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/storage/persistent_storage.pb.go -------------------------------------------------------------------------------- /api/client/storage/s3.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/storage/s3.pb.go -------------------------------------------------------------------------------- /api/client/storage/sql.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/client/storage/sql.pb.go -------------------------------------------------------------------------------- /api/proto/artifact/artifacts.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/artifact/artifacts.proto -------------------------------------------------------------------------------- /api/proto/artifact/bitbucket.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/artifact/bitbucket.proto -------------------------------------------------------------------------------- /api/proto/artifact/gcs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/artifact/gcs.proto -------------------------------------------------------------------------------- /api/proto/artifact/github.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/artifact/github.proto -------------------------------------------------------------------------------- /api/proto/artifact/gitlab.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/artifact/gitlab.proto -------------------------------------------------------------------------------- /api/proto/artifact/gitrepo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/artifact/gitrepo.proto -------------------------------------------------------------------------------- /api/proto/artifact/helm.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/artifact/helm.proto -------------------------------------------------------------------------------- /api/proto/artifact/http.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/artifact/http.proto -------------------------------------------------------------------------------- /api/proto/artifact/maven.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/artifact/maven.proto -------------------------------------------------------------------------------- /api/proto/artifact/oracle.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/artifact/oracle.proto -------------------------------------------------------------------------------- /api/proto/artifact/s3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/artifact/s3.proto -------------------------------------------------------------------------------- /api/proto/artifact/template.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/artifact/template.proto -------------------------------------------------------------------------------- /api/proto/canary/aws.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/canary/aws.proto -------------------------------------------------------------------------------- /api/proto/canary/canary.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/canary/canary.proto -------------------------------------------------------------------------------- /api/proto/canary/datadog.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/canary/datadog.proto -------------------------------------------------------------------------------- /api/proto/canary/gcs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/canary/gcs.proto -------------------------------------------------------------------------------- /api/proto/canary/google.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/canary/google.proto -------------------------------------------------------------------------------- /api/proto/canary/newrelic.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/canary/newrelic.proto -------------------------------------------------------------------------------- /api/proto/canary/prometheus.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/canary/prometheus.proto -------------------------------------------------------------------------------- /api/proto/canary/s3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/canary/s3.proto -------------------------------------------------------------------------------- /api/proto/canary/signalfx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/canary/signalfx.proto -------------------------------------------------------------------------------- /api/proto/canary/stackdriver.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/canary/stackdriver.proto -------------------------------------------------------------------------------- /api/proto/canary/supported_type.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/canary/supported_type.proto -------------------------------------------------------------------------------- /api/proto/ci/ci.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/ci/ci.proto -------------------------------------------------------------------------------- /api/proto/ci/codebuild.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/ci/codebuild.proto -------------------------------------------------------------------------------- /api/proto/ci/concourse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/ci/concourse.proto -------------------------------------------------------------------------------- /api/proto/ci/gcb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/ci/gcb.proto -------------------------------------------------------------------------------- /api/proto/ci/jenkins.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/ci/jenkins.proto -------------------------------------------------------------------------------- /api/proto/ci/travis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/ci/travis.proto -------------------------------------------------------------------------------- /api/proto/ci/wercker.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/ci/wercker.proto -------------------------------------------------------------------------------- /api/proto/cloudprovider/appengine.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/cloudprovider/appengine.proto -------------------------------------------------------------------------------- /api/proto/cloudprovider/aws.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/cloudprovider/aws.proto -------------------------------------------------------------------------------- /api/proto/cloudprovider/azure.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/cloudprovider/azure.proto -------------------------------------------------------------------------------- /api/proto/cloudprovider/cloudfoundry.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/cloudprovider/cloudfoundry.proto -------------------------------------------------------------------------------- /api/proto/cloudprovider/dcos.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/cloudprovider/dcos.proto -------------------------------------------------------------------------------- /api/proto/cloudprovider/docker_registry.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/cloudprovider/docker_registry.proto -------------------------------------------------------------------------------- /api/proto/cloudprovider/ecs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/cloudprovider/ecs.proto -------------------------------------------------------------------------------- /api/proto/cloudprovider/google.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/cloudprovider/google.proto -------------------------------------------------------------------------------- /api/proto/cloudprovider/huaweicloud.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/cloudprovider/huaweicloud.proto -------------------------------------------------------------------------------- /api/proto/cloudprovider/kubernetes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/cloudprovider/kubernetes.proto -------------------------------------------------------------------------------- /api/proto/cloudprovider/oracle.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/cloudprovider/oracle.proto -------------------------------------------------------------------------------- /api/proto/cloudprovider/providers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/cloudprovider/providers.proto -------------------------------------------------------------------------------- /api/proto/config/clouddriver.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/config/clouddriver.proto -------------------------------------------------------------------------------- /api/proto/config/config_files.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/config/config_files.proto -------------------------------------------------------------------------------- /api/proto/config/deck.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/config/deck.proto -------------------------------------------------------------------------------- /api/proto/config/deck_env.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/config/deck_env.proto -------------------------------------------------------------------------------- /api/proto/config/echo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/config/echo.proto -------------------------------------------------------------------------------- /api/proto/config/fiat.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/config/fiat.proto -------------------------------------------------------------------------------- /api/proto/config/front50.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/config/front50.proto -------------------------------------------------------------------------------- /api/proto/config/gate.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/config/gate.proto -------------------------------------------------------------------------------- /api/proto/config/halconfig.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/config/halconfig.proto -------------------------------------------------------------------------------- /api/proto/config/igor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/config/igor.proto -------------------------------------------------------------------------------- /api/proto/config/kayenta.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/config/kayenta.proto -------------------------------------------------------------------------------- /api/proto/config/managed_delivery.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/config/managed_delivery.proto -------------------------------------------------------------------------------- /api/proto/config/monitoring.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/config/monitoring.proto -------------------------------------------------------------------------------- /api/proto/config/orca.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/config/orca.proto -------------------------------------------------------------------------------- /api/proto/config/rosco.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/config/rosco.proto -------------------------------------------------------------------------------- /api/proto/config/service_enabled.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/config/service_enabled.proto -------------------------------------------------------------------------------- /api/proto/config/services.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/config/services.proto -------------------------------------------------------------------------------- /api/proto/features.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/features.proto -------------------------------------------------------------------------------- /api/proto/metricstores/datadog.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/metricstores/datadog.proto -------------------------------------------------------------------------------- /api/proto/metricstores/metricstores.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/metricstores/metricstores.proto -------------------------------------------------------------------------------- /api/proto/metricstores/newrelic.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/metricstores/newrelic.proto -------------------------------------------------------------------------------- /api/proto/metricstores/prometheus.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/metricstores/prometheus.proto -------------------------------------------------------------------------------- /api/proto/metricstores/stackdriver.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/metricstores/stackdriver.proto -------------------------------------------------------------------------------- /api/proto/notification/bearychat.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/notification/bearychat.proto -------------------------------------------------------------------------------- /api/proto/notification/email.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/notification/email.proto -------------------------------------------------------------------------------- /api/proto/notification/github_status.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/notification/github_status.proto -------------------------------------------------------------------------------- /api/proto/notification/google_chat.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/notification/google_chat.proto -------------------------------------------------------------------------------- /api/proto/notification/microsoft_teams.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/notification/microsoft_teams.proto -------------------------------------------------------------------------------- /api/proto/notification/notifications.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/notification/notifications.proto -------------------------------------------------------------------------------- /api/proto/notification/pubsub.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/notification/pubsub.proto -------------------------------------------------------------------------------- /api/proto/notification/slack.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/notification/slack.proto -------------------------------------------------------------------------------- /api/proto/notification/twilio.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/notification/twilio.proto -------------------------------------------------------------------------------- /api/proto/permissions.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/permissions.proto -------------------------------------------------------------------------------- /api/proto/pubsub/google.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/pubsub/google.proto -------------------------------------------------------------------------------- /api/proto/pubsub/pubsub.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/pubsub/pubsub.proto -------------------------------------------------------------------------------- /api/proto/repository/artifactory.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/repository/artifactory.proto -------------------------------------------------------------------------------- /api/proto/repository/repository.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/repository/repository.proto -------------------------------------------------------------------------------- /api/proto/security/authn/authn.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/security/authn/authn.proto -------------------------------------------------------------------------------- /api/proto/security/authz/authz.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/security/authz/authz.proto -------------------------------------------------------------------------------- /api/proto/security/security.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/security/security.proto -------------------------------------------------------------------------------- /api/proto/security/ssl.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/security/ssl.proto -------------------------------------------------------------------------------- /api/proto/security/trust_store.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/security/trust_store.proto -------------------------------------------------------------------------------- /api/proto/spinnaker/extensibility.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/spinnaker/extensibility.proto -------------------------------------------------------------------------------- /api/proto/stats.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/stats.proto -------------------------------------------------------------------------------- /api/proto/storage/azs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/storage/azs.proto -------------------------------------------------------------------------------- /api/proto/storage/gcs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/storage/gcs.proto -------------------------------------------------------------------------------- /api/proto/storage/oracle.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/storage/oracle.proto -------------------------------------------------------------------------------- /api/proto/storage/persistent_storage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/storage/persistent_storage.proto -------------------------------------------------------------------------------- /api/proto/storage/s3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/storage/s3.proto -------------------------------------------------------------------------------- /api/proto/storage/sql.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/api/proto/storage/sql.proto -------------------------------------------------------------------------------- /cmd/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/cmd/generate.go -------------------------------------------------------------------------------- /cmd/plugins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/cmd/plugins.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/validate-plugins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/cmd/validate-plugins.go -------------------------------------------------------------------------------- /cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/cmd/version.go -------------------------------------------------------------------------------- /docs/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/docs/docs.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/go.sum -------------------------------------------------------------------------------- /internal/convert/clouddriver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/clouddriver.go -------------------------------------------------------------------------------- /internal/convert/clouddriver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/clouddriver_test.go -------------------------------------------------------------------------------- /internal/convert/convert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/convert_test.go -------------------------------------------------------------------------------- /internal/convert/deck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/deck.go -------------------------------------------------------------------------------- /internal/convert/deck_env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/deck_env.go -------------------------------------------------------------------------------- /internal/convert/deck_env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/deck_env_test.go -------------------------------------------------------------------------------- /internal/convert/deck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/deck_test.go -------------------------------------------------------------------------------- /internal/convert/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/echo.go -------------------------------------------------------------------------------- /internal/convert/echo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/echo_test.go -------------------------------------------------------------------------------- /internal/convert/fiat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/fiat.go -------------------------------------------------------------------------------- /internal/convert/fiat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/fiat_test.go -------------------------------------------------------------------------------- /internal/convert/front50.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/front50.go -------------------------------------------------------------------------------- /internal/convert/front50_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/front50_test.go -------------------------------------------------------------------------------- /internal/convert/gate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/gate.go -------------------------------------------------------------------------------- /internal/convert/gate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/gate_test.go -------------------------------------------------------------------------------- /internal/convert/igor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/igor.go -------------------------------------------------------------------------------- /internal/convert/igor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/igor_test.go -------------------------------------------------------------------------------- /internal/convert/kayenta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/kayenta.go -------------------------------------------------------------------------------- /internal/convert/kayenta_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/kayenta_test.go -------------------------------------------------------------------------------- /internal/convert/keel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/keel.go -------------------------------------------------------------------------------- /internal/convert/keel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/keel_test.go -------------------------------------------------------------------------------- /internal/convert/monitoring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/monitoring.go -------------------------------------------------------------------------------- /internal/convert/monitoring_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/monitoring_test.go -------------------------------------------------------------------------------- /internal/convert/orca.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/orca.go -------------------------------------------------------------------------------- /internal/convert/orca_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/orca_test.go -------------------------------------------------------------------------------- /internal/convert/rosco.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/rosco.go -------------------------------------------------------------------------------- /internal/convert/rosco_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/convert/rosco_test.go -------------------------------------------------------------------------------- /internal/fileio/fileio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/fileio/fileio.go -------------------------------------------------------------------------------- /internal/prototest/prototest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/prototest/prototest.go -------------------------------------------------------------------------------- /internal/protoyaml/protoyaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/protoyaml/protoyaml.go -------------------------------------------------------------------------------- /internal/serializer/serializer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/serializer/serializer.go -------------------------------------------------------------------------------- /internal/validate/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/validate/validate.go -------------------------------------------------------------------------------- /internal/validate/validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/internal/validate/validate_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/main.go -------------------------------------------------------------------------------- /migration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/migration/README.md -------------------------------------------------------------------------------- /pkg/plugins/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/pkg/plugins/validate.go -------------------------------------------------------------------------------- /pkg/plugins/validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/pkg/plugins/validate_test.go -------------------------------------------------------------------------------- /pkg/transform/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/pkg/transform/transform.go -------------------------------------------------------------------------------- /pkg/transform/transform_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/pkg/transform/transform_test.go -------------------------------------------------------------------------------- /pkg/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/pkg/version/version.go -------------------------------------------------------------------------------- /testdata/clouddriver.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/testdata/clouddriver.yml -------------------------------------------------------------------------------- /testdata/deck-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/testdata/deck-env.yml -------------------------------------------------------------------------------- /testdata/deck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/testdata/deck.yml -------------------------------------------------------------------------------- /testdata/echo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/testdata/echo.yml -------------------------------------------------------------------------------- /testdata/fiat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/testdata/fiat.yml -------------------------------------------------------------------------------- /testdata/front50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/testdata/front50.yml -------------------------------------------------------------------------------- /testdata/gate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/testdata/gate.yml -------------------------------------------------------------------------------- /testdata/halconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/testdata/halconfig.yml -------------------------------------------------------------------------------- /testdata/halconfig_with_plugins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/testdata/halconfig_with_plugins.yml -------------------------------------------------------------------------------- /testdata/igor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/testdata/igor.yml -------------------------------------------------------------------------------- /testdata/kayenta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/testdata/kayenta.yml -------------------------------------------------------------------------------- /testdata/keel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/testdata/keel.yml -------------------------------------------------------------------------------- /testdata/orca.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/testdata/orca.yml -------------------------------------------------------------------------------- /testdata/rosco.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/testdata/rosco.yml -------------------------------------------------------------------------------- /testdata/spinnaker-monitoring.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinnaker/kleat/HEAD/testdata/spinnaker-monitoring.yml --------------------------------------------------------------------------------