├── .github ├── dependabot.yml └── workflows │ └── ci.yaml ├── .gitignore ├── .golangci.yml ├── .zappr.yaml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── MAINTAINERS ├── Makefile ├── README.md ├── SECURITY.md ├── api ├── cluster.go ├── cluster_status.go ├── cluster_test.go ├── cluster_version.go ├── cluster_version_test.go ├── node_pool.go ├── node_pool_test.go ├── problem.go └── test_util.go ├── channel ├── caching_source.go ├── combined.go ├── combined_test.go ├── config_source.go ├── directory.go ├── directory_test.go ├── git.go ├── git_test.go ├── mock_source.go ├── simple_config.go └── test_util.go ├── cmd └── clm │ └── main.go ├── config ├── config.go ├── include_exclude.go └── include_exclude_test.go ├── controller ├── cluster_list.go ├── cluster_list_test.go ├── controller.go └── controller_test.go ├── delivery.yaml ├── docs ├── cluster-registry.yaml ├── images │ └── cluster-lifecycle-manager.svg └── proposals │ └── adr-002-apply-kube-system.md ├── go.mod ├── go.sum ├── pkg ├── aws │ ├── assume_role_provider.go │ ├── eks │ │ └── token.go │ ├── instance_info.go │ ├── instance_info_test.go │ ├── retryer.go │ ├── retryer_test.go │ └── session.go ├── cluster-registry │ ├── client │ │ ├── cluster_registry_client.go │ │ ├── clusters │ │ │ ├── clusters_client.go │ │ │ ├── create_cluster_parameters.go │ │ │ ├── create_cluster_responses.go │ │ │ ├── delete_cluster_parameters.go │ │ │ ├── delete_cluster_responses.go │ │ │ ├── get_cluster_parameters.go │ │ │ ├── get_cluster_responses.go │ │ │ ├── list_clusters_parameters.go │ │ │ ├── list_clusters_responses.go │ │ │ ├── update_cluster_parameters.go │ │ │ └── update_cluster_responses.go │ │ ├── config_items │ │ │ ├── add_or_update_config_item_parameters.go │ │ │ ├── add_or_update_config_item_responses.go │ │ │ ├── config_items_client.go │ │ │ ├── delete_config_item_parameters.go │ │ │ └── delete_config_item_responses.go │ │ ├── infrastructure_accounts │ │ │ ├── create_infrastructure_account_parameters.go │ │ │ ├── create_infrastructure_account_responses.go │ │ │ ├── get_infrastructure_account_parameters.go │ │ │ ├── get_infrastructure_account_responses.go │ │ │ ├── infrastructure_accounts_client.go │ │ │ ├── list_infrastructure_accounts_parameters.go │ │ │ ├── list_infrastructure_accounts_responses.go │ │ │ ├── update_infrastructure_account_parameters.go │ │ │ └── update_infrastructure_account_responses.go │ │ ├── node_pool_config_items │ │ │ ├── add_or_update_node_pool_config_item_parameters.go │ │ │ ├── add_or_update_node_pool_config_item_responses.go │ │ │ ├── delete_node_pool_config_item_parameters.go │ │ │ ├── delete_node_pool_config_item_responses.go │ │ │ └── node_pool_config_items_client.go │ │ └── node_pools │ │ │ ├── create_or_update_node_pool_parameters.go │ │ │ ├── create_or_update_node_pool_responses.go │ │ │ ├── delete_node_pool_parameters.go │ │ │ ├── delete_node_pool_responses.go │ │ │ ├── list_node_pools_parameters.go │ │ │ ├── list_node_pools_responses.go │ │ │ ├── node_pools_client.go │ │ │ ├── update_node_pool_parameters.go │ │ │ └── update_node_pool_responses.go │ └── models │ │ ├── cluster.go │ │ ├── cluster_status.go │ │ ├── cluster_update.go │ │ ├── config_value.go │ │ ├── error.go │ │ ├── infrastructure_account.go │ │ ├── infrastructure_account_update.go │ │ ├── node_pool.go │ │ └── node_pool_update.go ├── credentials-loader │ ├── jwt │ │ ├── jwt.go │ │ └── jwt_test.go │ └── platformiam │ │ ├── file.go │ │ └── file_test.go ├── decrypter │ ├── decrypter.go │ ├── decrypter_test.go │ └── kms.go ├── kubernetes │ ├── kubernetes.go │ └── kubernetes_test.go ├── updatestrategy │ ├── aws_asg.go │ ├── aws_asg_test.go │ ├── aws_ec2.go │ ├── clc_update.go │ ├── clc_update_test.go │ ├── drain.go │ ├── drain_test.go │ ├── node_pool_manager.go │ ├── node_pool_manager_test.go │ ├── rolling_update.go │ ├── rolling_update_test.go │ ├── updatestrategy.go │ └── updatestrategy_test.go └── util │ ├── command │ ├── command.go │ └── command_test.go │ ├── copy.go │ ├── copy_test.go │ ├── generics.go │ └── hosted_zone.go ├── provisioner ├── aws.go ├── aws_az.go ├── aws_az_test.go ├── aws_test.go ├── cf.go ├── clusterpy.go ├── clusterpy_test.go ├── jwks.go ├── jwks_test.go ├── kubesystem.go ├── node_pools.go ├── provisioner.go ├── remote_files.go ├── remote_files_test.go ├── stdout.go ├── template.go ├── template_test.go ├── zalando_aws.go ├── zalando_eks.go └── zalando_eks_test.go ├── registry ├── file.go ├── http.go ├── http_test.go ├── registry.go ├── registry_test.go └── static.go └── tools.go /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | vendor/ 3 | .kube 4 | profile.cov 5 | .idea/ 6 | -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.zappr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/.zappr.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/SECURITY.md -------------------------------------------------------------------------------- /api/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/api/cluster.go -------------------------------------------------------------------------------- /api/cluster_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/api/cluster_status.go -------------------------------------------------------------------------------- /api/cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/api/cluster_test.go -------------------------------------------------------------------------------- /api/cluster_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/api/cluster_version.go -------------------------------------------------------------------------------- /api/cluster_version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/api/cluster_version_test.go -------------------------------------------------------------------------------- /api/node_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/api/node_pool.go -------------------------------------------------------------------------------- /api/node_pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/api/node_pool_test.go -------------------------------------------------------------------------------- /api/problem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/api/problem.go -------------------------------------------------------------------------------- /api/test_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/api/test_util.go -------------------------------------------------------------------------------- /channel/caching_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/channel/caching_source.go -------------------------------------------------------------------------------- /channel/combined.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/channel/combined.go -------------------------------------------------------------------------------- /channel/combined_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/channel/combined_test.go -------------------------------------------------------------------------------- /channel/config_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/channel/config_source.go -------------------------------------------------------------------------------- /channel/directory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/channel/directory.go -------------------------------------------------------------------------------- /channel/directory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/channel/directory_test.go -------------------------------------------------------------------------------- /channel/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/channel/git.go -------------------------------------------------------------------------------- /channel/git_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/channel/git_test.go -------------------------------------------------------------------------------- /channel/mock_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/channel/mock_source.go -------------------------------------------------------------------------------- /channel/simple_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/channel/simple_config.go -------------------------------------------------------------------------------- /channel/test_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/channel/test_util.go -------------------------------------------------------------------------------- /cmd/clm/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/cmd/clm/main.go -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/config/config.go -------------------------------------------------------------------------------- /config/include_exclude.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/config/include_exclude.go -------------------------------------------------------------------------------- /config/include_exclude_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/config/include_exclude_test.go -------------------------------------------------------------------------------- /controller/cluster_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/controller/cluster_list.go -------------------------------------------------------------------------------- /controller/cluster_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/controller/cluster_list_test.go -------------------------------------------------------------------------------- /controller/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/controller/controller.go -------------------------------------------------------------------------------- /controller/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/controller/controller_test.go -------------------------------------------------------------------------------- /delivery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/delivery.yaml -------------------------------------------------------------------------------- /docs/cluster-registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/docs/cluster-registry.yaml -------------------------------------------------------------------------------- /docs/images/cluster-lifecycle-manager.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/docs/images/cluster-lifecycle-manager.svg -------------------------------------------------------------------------------- /docs/proposals/adr-002-apply-kube-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/docs/proposals/adr-002-apply-kube-system.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/go.sum -------------------------------------------------------------------------------- /pkg/aws/assume_role_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/aws/assume_role_provider.go -------------------------------------------------------------------------------- /pkg/aws/eks/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/aws/eks/token.go -------------------------------------------------------------------------------- /pkg/aws/instance_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/aws/instance_info.go -------------------------------------------------------------------------------- /pkg/aws/instance_info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/aws/instance_info_test.go -------------------------------------------------------------------------------- /pkg/aws/retryer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/aws/retryer.go -------------------------------------------------------------------------------- /pkg/aws/retryer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/aws/retryer_test.go -------------------------------------------------------------------------------- /pkg/aws/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/aws/session.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/cluster_registry_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/cluster_registry_client.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/clusters/clusters_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/clusters/clusters_client.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/clusters/create_cluster_parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/clusters/create_cluster_parameters.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/clusters/create_cluster_responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/clusters/create_cluster_responses.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/clusters/delete_cluster_parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/clusters/delete_cluster_parameters.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/clusters/delete_cluster_responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/clusters/delete_cluster_responses.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/clusters/get_cluster_parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/clusters/get_cluster_parameters.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/clusters/get_cluster_responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/clusters/get_cluster_responses.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/clusters/list_clusters_parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/clusters/list_clusters_parameters.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/clusters/list_clusters_responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/clusters/list_clusters_responses.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/clusters/update_cluster_parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/clusters/update_cluster_parameters.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/clusters/update_cluster_responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/clusters/update_cluster_responses.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/config_items/add_or_update_config_item_parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/config_items/add_or_update_config_item_parameters.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/config_items/add_or_update_config_item_responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/config_items/add_or_update_config_item_responses.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/config_items/config_items_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/config_items/config_items_client.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/config_items/delete_config_item_parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/config_items/delete_config_item_parameters.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/config_items/delete_config_item_responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/config_items/delete_config_item_responses.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/infrastructure_accounts/create_infrastructure_account_parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/infrastructure_accounts/create_infrastructure_account_parameters.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/infrastructure_accounts/create_infrastructure_account_responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/infrastructure_accounts/create_infrastructure_account_responses.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/infrastructure_accounts/get_infrastructure_account_parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/infrastructure_accounts/get_infrastructure_account_parameters.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/infrastructure_accounts/get_infrastructure_account_responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/infrastructure_accounts/get_infrastructure_account_responses.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/infrastructure_accounts/infrastructure_accounts_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/infrastructure_accounts/infrastructure_accounts_client.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/infrastructure_accounts/list_infrastructure_accounts_parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/infrastructure_accounts/list_infrastructure_accounts_parameters.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/infrastructure_accounts/list_infrastructure_accounts_responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/infrastructure_accounts/list_infrastructure_accounts_responses.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/infrastructure_accounts/update_infrastructure_account_parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/infrastructure_accounts/update_infrastructure_account_parameters.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/infrastructure_accounts/update_infrastructure_account_responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/infrastructure_accounts/update_infrastructure_account_responses.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/node_pool_config_items/add_or_update_node_pool_config_item_parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/node_pool_config_items/add_or_update_node_pool_config_item_parameters.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/node_pool_config_items/add_or_update_node_pool_config_item_responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/node_pool_config_items/add_or_update_node_pool_config_item_responses.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/node_pool_config_items/delete_node_pool_config_item_parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/node_pool_config_items/delete_node_pool_config_item_parameters.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/node_pool_config_items/delete_node_pool_config_item_responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/node_pool_config_items/delete_node_pool_config_item_responses.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/node_pool_config_items/node_pool_config_items_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/node_pool_config_items/node_pool_config_items_client.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/node_pools/create_or_update_node_pool_parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/node_pools/create_or_update_node_pool_parameters.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/node_pools/create_or_update_node_pool_responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/node_pools/create_or_update_node_pool_responses.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/node_pools/delete_node_pool_parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/node_pools/delete_node_pool_parameters.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/node_pools/delete_node_pool_responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/node_pools/delete_node_pool_responses.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/node_pools/list_node_pools_parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/node_pools/list_node_pools_parameters.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/node_pools/list_node_pools_responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/node_pools/list_node_pools_responses.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/node_pools/node_pools_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/node_pools/node_pools_client.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/node_pools/update_node_pool_parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/node_pools/update_node_pool_parameters.go -------------------------------------------------------------------------------- /pkg/cluster-registry/client/node_pools/update_node_pool_responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/client/node_pools/update_node_pool_responses.go -------------------------------------------------------------------------------- /pkg/cluster-registry/models/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/models/cluster.go -------------------------------------------------------------------------------- /pkg/cluster-registry/models/cluster_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/models/cluster_status.go -------------------------------------------------------------------------------- /pkg/cluster-registry/models/cluster_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/models/cluster_update.go -------------------------------------------------------------------------------- /pkg/cluster-registry/models/config_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/models/config_value.go -------------------------------------------------------------------------------- /pkg/cluster-registry/models/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/models/error.go -------------------------------------------------------------------------------- /pkg/cluster-registry/models/infrastructure_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/models/infrastructure_account.go -------------------------------------------------------------------------------- /pkg/cluster-registry/models/infrastructure_account_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/models/infrastructure_account_update.go -------------------------------------------------------------------------------- /pkg/cluster-registry/models/node_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/models/node_pool.go -------------------------------------------------------------------------------- /pkg/cluster-registry/models/node_pool_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/cluster-registry/models/node_pool_update.go -------------------------------------------------------------------------------- /pkg/credentials-loader/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/credentials-loader/jwt/jwt.go -------------------------------------------------------------------------------- /pkg/credentials-loader/jwt/jwt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/credentials-loader/jwt/jwt_test.go -------------------------------------------------------------------------------- /pkg/credentials-loader/platformiam/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/credentials-loader/platformiam/file.go -------------------------------------------------------------------------------- /pkg/credentials-loader/platformiam/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/credentials-loader/platformiam/file_test.go -------------------------------------------------------------------------------- /pkg/decrypter/decrypter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/decrypter/decrypter.go -------------------------------------------------------------------------------- /pkg/decrypter/decrypter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/decrypter/decrypter_test.go -------------------------------------------------------------------------------- /pkg/decrypter/kms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/decrypter/kms.go -------------------------------------------------------------------------------- /pkg/kubernetes/kubernetes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/kubernetes/kubernetes.go -------------------------------------------------------------------------------- /pkg/kubernetes/kubernetes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/kubernetes/kubernetes_test.go -------------------------------------------------------------------------------- /pkg/updatestrategy/aws_asg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/updatestrategy/aws_asg.go -------------------------------------------------------------------------------- /pkg/updatestrategy/aws_asg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/updatestrategy/aws_asg_test.go -------------------------------------------------------------------------------- /pkg/updatestrategy/aws_ec2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/updatestrategy/aws_ec2.go -------------------------------------------------------------------------------- /pkg/updatestrategy/clc_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/updatestrategy/clc_update.go -------------------------------------------------------------------------------- /pkg/updatestrategy/clc_update_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/updatestrategy/clc_update_test.go -------------------------------------------------------------------------------- /pkg/updatestrategy/drain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/updatestrategy/drain.go -------------------------------------------------------------------------------- /pkg/updatestrategy/drain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/updatestrategy/drain_test.go -------------------------------------------------------------------------------- /pkg/updatestrategy/node_pool_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/updatestrategy/node_pool_manager.go -------------------------------------------------------------------------------- /pkg/updatestrategy/node_pool_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/updatestrategy/node_pool_manager_test.go -------------------------------------------------------------------------------- /pkg/updatestrategy/rolling_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/updatestrategy/rolling_update.go -------------------------------------------------------------------------------- /pkg/updatestrategy/rolling_update_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/updatestrategy/rolling_update_test.go -------------------------------------------------------------------------------- /pkg/updatestrategy/updatestrategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/updatestrategy/updatestrategy.go -------------------------------------------------------------------------------- /pkg/updatestrategy/updatestrategy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/updatestrategy/updatestrategy_test.go -------------------------------------------------------------------------------- /pkg/util/command/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/util/command/command.go -------------------------------------------------------------------------------- /pkg/util/command/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/util/command/command_test.go -------------------------------------------------------------------------------- /pkg/util/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/util/copy.go -------------------------------------------------------------------------------- /pkg/util/copy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/util/copy_test.go -------------------------------------------------------------------------------- /pkg/util/generics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/util/generics.go -------------------------------------------------------------------------------- /pkg/util/hosted_zone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/pkg/util/hosted_zone.go -------------------------------------------------------------------------------- /provisioner/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/provisioner/aws.go -------------------------------------------------------------------------------- /provisioner/aws_az.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/provisioner/aws_az.go -------------------------------------------------------------------------------- /provisioner/aws_az_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/provisioner/aws_az_test.go -------------------------------------------------------------------------------- /provisioner/aws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/provisioner/aws_test.go -------------------------------------------------------------------------------- /provisioner/cf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/provisioner/cf.go -------------------------------------------------------------------------------- /provisioner/clusterpy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/provisioner/clusterpy.go -------------------------------------------------------------------------------- /provisioner/clusterpy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/provisioner/clusterpy_test.go -------------------------------------------------------------------------------- /provisioner/jwks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/provisioner/jwks.go -------------------------------------------------------------------------------- /provisioner/jwks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/provisioner/jwks_test.go -------------------------------------------------------------------------------- /provisioner/kubesystem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/provisioner/kubesystem.go -------------------------------------------------------------------------------- /provisioner/node_pools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/provisioner/node_pools.go -------------------------------------------------------------------------------- /provisioner/provisioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/provisioner/provisioner.go -------------------------------------------------------------------------------- /provisioner/remote_files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/provisioner/remote_files.go -------------------------------------------------------------------------------- /provisioner/remote_files_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/provisioner/remote_files_test.go -------------------------------------------------------------------------------- /provisioner/stdout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/provisioner/stdout.go -------------------------------------------------------------------------------- /provisioner/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/provisioner/template.go -------------------------------------------------------------------------------- /provisioner/template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/provisioner/template_test.go -------------------------------------------------------------------------------- /provisioner/zalando_aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/provisioner/zalando_aws.go -------------------------------------------------------------------------------- /provisioner/zalando_eks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/provisioner/zalando_eks.go -------------------------------------------------------------------------------- /provisioner/zalando_eks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/provisioner/zalando_eks_test.go -------------------------------------------------------------------------------- /registry/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/registry/file.go -------------------------------------------------------------------------------- /registry/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/registry/http.go -------------------------------------------------------------------------------- /registry/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/registry/http_test.go -------------------------------------------------------------------------------- /registry/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/registry/registry.go -------------------------------------------------------------------------------- /registry/registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/registry/registry_test.go -------------------------------------------------------------------------------- /registry/static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/registry/static.go -------------------------------------------------------------------------------- /tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalando-incubator/cluster-lifecycle-manager/HEAD/tools.go --------------------------------------------------------------------------------