├── .covignore ├── .env.example ├── .github ├── actions │ ├── end-status │ │ └── action.yaml │ └── start-status │ │ └── action.yaml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── codeql.yml │ ├── e2e.yaml │ ├── gen.yaml │ ├── ok-to-test.yaml │ ├── provision-test.yaml │ ├── release.yaml │ ├── scan.yml │ ├── test.yaml │ ├── trivy.yaml │ └── unit.yaml ├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG.md ├── CLAUDE.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Makefile ├── PROJECT ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── active_releases.json ├── api ├── conditioner.go ├── conditioner_test.go └── v1alpha1 │ ├── clusterexternaldns_types.go │ ├── clusterexternaldns_types_test.go │ ├── defaultdomaincertificate_types.go │ ├── externaldns_types.go │ ├── externaldns_types_test.go │ ├── groupversion_info.go │ ├── nginxingresscontroller_types.go │ ├── nginxingresscontroller_types_test.go │ └── zz_generated.deepcopy.go ├── cmd ├── e2e │ └── main.go ├── main.go └── operator │ └── main.go ├── config ├── crd │ └── bases │ │ ├── approuting.kubernetes.azure.com_clusterexternaldnses.yaml │ │ ├── approuting.kubernetes.azure.com_defaultdomaincertificates.yaml │ │ ├── approuting.kubernetes.azure.com_externaldnses.yaml │ │ └── approuting.kubernetes.azure.com_nginxingresscontrollers.yaml └── gatewaycrd │ └── v1.2.0.yaml ├── devenv ├── .gitignore ├── kustomize │ └── operator-deployment │ │ ├── kustomization.yaml │ │ └── operator.yaml ├── scripts │ ├── command_invoke_with_output.sh │ ├── deploy_operator.sh │ └── push_image.sh └── tf │ ├── cluster.tf │ ├── hello_web_app.tf │ ├── main.tf │ ├── privatedns.tf │ ├── publicdns.tf │ ├── resourcegroup.tf │ ├── vault.tf │ └── workloadidentity.tf ├── docker ├── dev.Dockerfile ├── e2e.Dockerfile └── operator.Dockerfile ├── docs ├── coverage.md ├── e2e-jobs.png ├── e2e.md ├── local-testing.md ├── release.md └── test-sha.png ├── go.mod ├── go.sum ├── pkg ├── clients │ └── default-domain │ │ ├── client.go │ │ ├── client_test.go │ │ └── types.go ├── config │ ├── config.go │ ├── config_test.go │ ├── types.go │ └── types_test.go ├── controller │ ├── common │ │ ├── clean_type.go │ │ ├── clean_type_test.go │ │ ├── cleaner.go │ │ ├── cleaner_test.go │ │ ├── main_test.go │ │ ├── resource_reconciler.go │ │ └── resource_reconciler_test.go │ ├── controller.go │ ├── controller_test.go │ ├── controllername │ │ ├── controllername.go │ │ └── controllername_test.go │ ├── crd.go │ ├── crd_test.go │ ├── defaultdomaincert │ │ ├── default_domain_cert_controller.go │ │ └── default_domain_cert_controller_test.go │ ├── dns │ │ ├── cluster_external_dns.go │ │ ├── cluster_external_dns_test.go │ │ ├── consts_for_test.go │ │ ├── default_domain_cluster_external_dns.go │ │ ├── default_domain_cluster_external_dns_test.go │ │ ├── external_dns.go │ │ ├── external_dns_crd.go │ │ ├── external_dns_crd_test.go │ │ ├── external_dns_test.go │ │ ├── mock_dns_config_test.go │ │ ├── types.go │ │ ├── util.go │ │ └── util_test.go │ ├── ingress │ │ ├── concurrency_watchdog.go │ │ ├── concurrency_watchdog_test.go │ │ ├── ingress_class_reconciler.go │ │ ├── ingress_controller_reconciler.go │ │ └── ingress_test.go │ ├── keyvault │ │ ├── placeholderpod │ │ │ ├── event_mirror.go │ │ │ ├── event_mirror_test.go │ │ │ ├── placeholder_pod.go │ │ │ ├── placeholder_pod_test.go │ │ │ ├── spc_owner.go │ │ │ └── spc_owner_test.go │ │ └── spc │ │ │ ├── consts.go │ │ │ ├── gateway.go │ │ │ ├── gateway_test.go │ │ │ ├── ingress.go │ │ │ ├── ingress_test.go │ │ │ ├── nic.go │ │ │ ├── nic_test.go │ │ │ ├── parse_kv.go │ │ │ ├── parse_kv_test.go │ │ │ ├── reconcile.go │ │ │ └── reconcile_test.go │ ├── metrics │ │ └── metrics.go │ ├── nginxingress │ │ ├── default.go │ │ ├── default_test.go │ │ ├── index.go │ │ ├── index_test.go │ │ ├── nginx_ingress_controller.go │ │ ├── nginx_ingress_controller_test.go │ │ └── types.go │ ├── osm │ │ ├── ingress_backend_reconciler.go │ │ ├── ingress_backend_reconciler_test.go │ │ ├── ingress_cert_config_reconciler.go │ │ └── ingress_cert_config_reconciler_test.go │ ├── service │ │ ├── ingress_reconciler.go │ │ └── ingress_reconciler_test.go │ └── testutils │ │ ├── fakemanager.go │ │ ├── testcrds │ │ └── approuting.kubernetes.azure.com_nginxingresscontrollers.yaml │ │ └── testutils.go ├── manifests │ ├── CLAUDE.md │ ├── common.go │ ├── common_test.go │ ├── external_dns.go │ ├── external_dns_test.go │ ├── fixtures │ │ ├── common │ │ │ ├── another-namespace.yaml │ │ │ └── namespace.yaml │ │ ├── external_dns │ │ │ ├── all-possibilities.yaml │ │ │ ├── full.yaml │ │ │ ├── gateway-and-ingress-crd.yaml │ │ │ ├── gateway-and-ingress-namespace-scoped-crd.yaml │ │ │ ├── gateway-crd.yaml │ │ │ ├── gateway-namespace-scoped-crd.yaml │ │ │ ├── ingress-crd.yaml │ │ │ ├── no-ownership.yaml │ │ │ ├── private-gateway.yaml │ │ │ ├── private-ingress-gateway.yaml │ │ │ ├── private.yaml │ │ │ └── short-sync-interval.yaml │ │ └── nginx │ │ │ ├── default_version │ │ │ ├── full-with-client-ip-logging-and-custom-log-format.yaml │ │ │ ├── full-with-client-ip-logging.yaml │ │ │ ├── full-with-custom-log-format.yaml │ │ │ ├── full-with-http-disabled.yaml │ │ │ ├── full-with-ip-source-ranges.yaml │ │ │ ├── full-with-no-source-ranges.yaml │ │ │ ├── full-with-other-ip-source-ranges.yaml │ │ │ ├── full-with-replicas.yaml │ │ │ ├── full-with-ssl-passthrough.yaml │ │ │ ├── full-with-target-cpu.yaml │ │ │ ├── full.yaml │ │ │ ├── internal-with-custom-http-errors-cert-and-service.yaml │ │ │ ├── internal-with-custom-http-errors.yaml │ │ │ ├── internal-with-default-backend-service-and-ssl-cert.yaml │ │ │ ├── internal-with-default-backend-service.yaml │ │ │ ├── internal-with-http-disabled.yaml │ │ │ ├── internal-with-nil-ssl-cert-and-force-ssl.yaml │ │ │ ├── internal-with-ssl-cert-and-force-ssl.yaml │ │ │ ├── internal-with-ssl-cert.yaml │ │ │ ├── internal.yaml │ │ │ ├── kube-system.yaml │ │ │ ├── no-ownership.yaml │ │ │ └── optional-features-disabled.yaml │ │ │ ├── v1.10.0 │ │ │ ├── full-with-http-disabled.yaml │ │ │ ├── full-with-replicas.yaml │ │ │ ├── full-with-target-cpu.yaml │ │ │ ├── full.yaml │ │ │ ├── internal-with-custom-http-errors-cert-and-service.yaml │ │ │ ├── internal-with-custom-http-errors.yaml │ │ │ ├── internal-with-default-backend-service-and-ssl-cert.yaml │ │ │ ├── internal-with-default-backend-service.yaml │ │ │ ├── internal-with-http-disabled.yaml │ │ │ ├── internal-with-nil-ssl-cert-and-force-ssl.yaml │ │ │ ├── internal-with-ssl-cert-and-force-ssl.yaml │ │ │ ├── internal-with-ssl-cert.yaml │ │ │ ├── internal.yaml │ │ │ ├── kube-system.yaml │ │ │ ├── no-ownership.yaml │ │ │ └── optional-features-disabled.yaml │ │ │ ├── v1.11.2 │ │ │ ├── full-with-http-disabled.yaml │ │ │ ├── full-with-replicas.yaml │ │ │ ├── full-with-target-cpu.yaml │ │ │ ├── full.yaml │ │ │ ├── internal-with-custom-http-errors-cert-and-service.yaml │ │ │ ├── internal-with-custom-http-errors.yaml │ │ │ ├── internal-with-default-backend-service-and-ssl-cert.yaml │ │ │ ├── internal-with-default-backend-service.yaml │ │ │ ├── internal-with-http-disabled.yaml │ │ │ ├── internal-with-nil-ssl-cert-and-force-ssl.yaml │ │ │ ├── internal-with-ssl-cert-and-force-ssl.yaml │ │ │ ├── internal-with-ssl-cert.yaml │ │ │ ├── internal.yaml │ │ │ ├── kube-system.yaml │ │ │ ├── no-ownership.yaml │ │ │ └── optional-features-disabled.yaml │ │ │ ├── v1.11.5 │ │ │ ├── full-with-client-ip-logging-and-custom-log-format.yaml │ │ │ ├── full-with-client-ip-logging.yaml │ │ │ ├── full-with-custom-log-format.yaml │ │ │ ├── full-with-http-disabled.yaml │ │ │ ├── full-with-ip-source-ranges.yaml │ │ │ ├── full-with-no-source-ranges.yaml │ │ │ ├── full-with-other-ip-source-ranges.yaml │ │ │ ├── full-with-replicas.yaml │ │ │ ├── full-with-ssl-passthrough.yaml │ │ │ ├── full-with-target-cpu.yaml │ │ │ ├── full.yaml │ │ │ ├── internal-with-custom-http-errors-cert-and-service.yaml │ │ │ ├── internal-with-custom-http-errors.yaml │ │ │ ├── internal-with-default-backend-service-and-ssl-cert.yaml │ │ │ ├── internal-with-default-backend-service.yaml │ │ │ ├── internal-with-http-disabled.yaml │ │ │ ├── internal-with-nil-ssl-cert-and-force-ssl.yaml │ │ │ ├── internal-with-ssl-cert-and-force-ssl.yaml │ │ │ ├── internal-with-ssl-cert.yaml │ │ │ ├── internal.yaml │ │ │ ├── kube-system.yaml │ │ │ ├── no-ownership.yaml │ │ │ └── optional-features-disabled.yaml │ │ │ └── v1.13.1 │ │ │ ├── full-with-client-ip-logging-and-custom-log-format.yaml │ │ │ ├── full-with-client-ip-logging.yaml │ │ │ ├── full-with-custom-log-format.yaml │ │ │ ├── full-with-http-disabled.yaml │ │ │ ├── full-with-no-source-ranges.yaml │ │ │ ├── full-with-other-ip-source-ranges.yaml │ │ │ ├── full-with-replicas.yaml │ │ │ ├── full-with-ssl-passthrough.yaml │ │ │ ├── full-with-target-cpu.yaml │ │ │ ├── full.yaml │ │ │ ├── internal-with-custom-http-errors-cert-and-service.yaml │ │ │ ├── internal-with-custom-http-errors.yaml │ │ │ ├── internal-with-default-backend-service-and-ssl-cert.yaml │ │ │ ├── internal-with-default-backend-service.yaml │ │ │ ├── internal-with-http-disabled.yaml │ │ │ ├── internal-with-nil-ssl-cert-and-force-ssl.yaml │ │ │ ├── internal-with-ssl-cert-and-force-ssl.yaml │ │ │ ├── internal-with-ssl-cert.yaml │ │ │ ├── internal.yaml │ │ │ ├── kube-system.yaml │ │ │ ├── no-ownership.yaml │ │ │ └── optional-features-disabled.yaml │ ├── nginx.go │ ├── nginx_test.go │ ├── policy │ │ ├── README.md │ │ ├── kustomization.yaml │ │ └── manifests │ │ │ ├── expand-apps.yaml │ │ │ ├── k8sblockendpointeditdefaultrole.yaml │ │ │ ├── k8scontainerlimits.yaml │ │ │ ├── k8scontainerratios.yaml │ │ │ ├── k8scontainerrequests.yaml │ │ │ ├── k8sdisallowanonymous.yaml │ │ │ ├── k8sdisallowinteractivetty.yaml │ │ │ ├── k8shorizontalpodautoscaler.yaml │ │ │ ├── k8spoddisruptionbudget.yaml │ │ │ ├── k8spspallowedusers.yaml │ │ │ ├── k8spspallowprivilegeescalationcontainer.yaml │ │ │ ├── k8spspautomountserviceaccounttokenpod.yaml │ │ │ ├── k8spspcapabilities.yaml │ │ │ ├── k8spspflexvolumes.yaml │ │ │ ├── k8spspforbiddensysctls.yaml │ │ │ ├── k8spsphostfilesystem.yaml │ │ │ ├── k8spsphostnamespace.yaml │ │ │ ├── k8spsphostnetworkingports.yaml │ │ │ ├── k8spspprivilegedcontainer.yaml │ │ │ ├── k8spspprocmount.yaml │ │ │ ├── k8spspreadonlyrootfilesystem.yaml │ │ │ ├── k8spspselinuxv2.yaml │ │ │ ├── k8spspvolumetypes.yaml │ │ │ ├── k8srequiredprobes.yaml │ │ │ └── templates │ │ │ ├── k8sallowedrepos.yaml │ │ │ ├── k8sblockendpointeditdefaultrole.yaml │ │ │ ├── k8sblockloadbalancer.yaml │ │ │ ├── k8sblocknodeport.yaml │ │ │ ├── k8sblockwildcardingress.yaml │ │ │ ├── k8scontainerephemeralstoragelimit.yaml │ │ │ ├── k8scontainerlimits.yaml │ │ │ ├── k8scontainerratios.yaml │ │ │ ├── k8scontainerrequests.yaml │ │ │ ├── k8sdisallowanonymous.yaml │ │ │ ├── k8sdisallowedrepos.yaml │ │ │ ├── k8sdisallowedtags.yaml │ │ │ ├── k8sdisallowinteractivetty.yaml │ │ │ ├── k8sexternalips.yaml │ │ │ ├── k8shorizontalpodautoscaler.yaml │ │ │ ├── k8shttpsonly.yaml │ │ │ ├── k8simagedigests.yaml │ │ │ ├── k8spoddisruptionbudget.yaml │ │ │ ├── k8spspallowedusers.yaml │ │ │ ├── k8spspallowprivilegeescalationcontainer.yaml │ │ │ ├── k8spspapparmor.yaml │ │ │ ├── k8spspautomountserviceaccounttokenpod.yaml │ │ │ ├── k8spspcapabilities.yaml │ │ │ ├── k8spspflexvolumes.yaml │ │ │ ├── k8spspforbiddensysctls.yaml │ │ │ ├── k8spspfsgroup.yaml │ │ │ ├── k8spsphostfilesystem.yaml │ │ │ ├── k8spsphostnamespace.yaml │ │ │ ├── k8spsphostnetworkingports.yaml │ │ │ ├── k8spspprivilegedcontainer.yaml │ │ │ ├── k8spspprocmount.yaml │ │ │ ├── k8spspreadonlyrootfilesystem.yaml │ │ │ ├── k8spspseccomp.yaml │ │ │ ├── k8spspselinuxv2.yaml │ │ │ ├── k8spspvolumetypes.yaml │ │ │ ├── k8sreplicalimits.yaml │ │ │ ├── k8srequiredannotations.yaml │ │ │ ├── k8srequiredlabels.yaml │ │ │ ├── k8srequiredprobes.yaml │ │ │ ├── k8srequiredresources.yaml │ │ │ ├── k8sstorageclass.yaml │ │ │ ├── k8suniqueingresshost.yaml │ │ │ ├── k8suniqueserviceselector.yaml │ │ │ ├── noupdateserviceaccount.yaml │ │ │ └── verifydeprecatedapi.yaml │ └── types.go ├── store │ ├── store.go │ └── store_test.go ├── tls │ ├── tls.go │ └── tls_test.go └── util │ ├── controller_errors.go │ ├── controller_errors_test.go │ ├── gateway_index.go │ ├── gateway_index_test.go │ ├── ingress_manager.go │ ├── serviceaccount.go │ ├── serviceaccount_test.go │ ├── util.go │ └── util_test.go └── testing └── e2e ├── clients ├── acr.go ├── aks.go ├── akv.go ├── application.go ├── auth.go ├── azcred.go ├── dns.go ├── exec.go ├── identity.go ├── name.go ├── poll.go └── resourcegroup.go ├── cmd ├── deploy.go ├── flags.go ├── infra.go ├── matrix.go ├── root.go └── test.go ├── github └── actions.go ├── infra ├── convert.go ├── deploy.go ├── infras.go ├── provision.go ├── region.go └── types.go ├── logger └── logger.go ├── manifests ├── clientServer.go ├── common.go ├── customErrorsClientServer.go ├── defaultBackendClientServer.go ├── e2e.go ├── embedded │ ├── 404.html │ ├── 503.html │ ├── client.golang │ ├── customErrorsClient.golang │ ├── defaultBackendClient.golang │ ├── defaultBackendServer.golang │ ├── prom.golang │ └── server.golang ├── nginxIngressController.go ├── operator.go └── prometheus.go ├── suites ├── all.go ├── basic.go ├── clusterexternaldns_crd.go ├── defaultBackendService.go ├── defaultdomain.go ├── externaldns_crd.go ├── nginxIngressController.go ├── operatorConfig.go ├── osm.go ├── prometheus.go ├── utils.go └── workloadidentity.go └── tests ├── run.go └── types.go /.covignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/.covignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/.env.example -------------------------------------------------------------------------------- /.github/actions/end-status/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/.github/actions/end-status/action.yaml -------------------------------------------------------------------------------- /.github/actions/start-status/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/.github/actions/start-status/action.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/.github/workflows/e2e.yaml -------------------------------------------------------------------------------- /.github/workflows/gen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/.github/workflows/gen.yaml -------------------------------------------------------------------------------- /.github/workflows/ok-to-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/.github/workflows/ok-to-test.yaml -------------------------------------------------------------------------------- /.github/workflows/provision-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/.github/workflows/provision-test.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/.github/workflows/scan.yml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.github/workflows/trivy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/.github/workflows/trivy.yaml -------------------------------------------------------------------------------- /.github/workflows/unit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/.github/workflows/unit.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/Makefile -------------------------------------------------------------------------------- /PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/PROJECT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /active_releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/active_releases.json -------------------------------------------------------------------------------- /api/conditioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/api/conditioner.go -------------------------------------------------------------------------------- /api/conditioner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/api/conditioner_test.go -------------------------------------------------------------------------------- /api/v1alpha1/clusterexternaldns_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/api/v1alpha1/clusterexternaldns_types.go -------------------------------------------------------------------------------- /api/v1alpha1/clusterexternaldns_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/api/v1alpha1/clusterexternaldns_types_test.go -------------------------------------------------------------------------------- /api/v1alpha1/defaultdomaincertificate_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/api/v1alpha1/defaultdomaincertificate_types.go -------------------------------------------------------------------------------- /api/v1alpha1/externaldns_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/api/v1alpha1/externaldns_types.go -------------------------------------------------------------------------------- /api/v1alpha1/externaldns_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/api/v1alpha1/externaldns_types_test.go -------------------------------------------------------------------------------- /api/v1alpha1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/api/v1alpha1/groupversion_info.go -------------------------------------------------------------------------------- /api/v1alpha1/nginxingresscontroller_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/api/v1alpha1/nginxingresscontroller_types.go -------------------------------------------------------------------------------- /api/v1alpha1/nginxingresscontroller_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/api/v1alpha1/nginxingresscontroller_types_test.go -------------------------------------------------------------------------------- /api/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/api/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /cmd/e2e/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/cmd/e2e/main.go -------------------------------------------------------------------------------- /cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/cmd/main.go -------------------------------------------------------------------------------- /cmd/operator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/cmd/operator/main.go -------------------------------------------------------------------------------- /config/crd/bases/approuting.kubernetes.azure.com_clusterexternaldnses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/config/crd/bases/approuting.kubernetes.azure.com_clusterexternaldnses.yaml -------------------------------------------------------------------------------- /config/crd/bases/approuting.kubernetes.azure.com_defaultdomaincertificates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/config/crd/bases/approuting.kubernetes.azure.com_defaultdomaincertificates.yaml -------------------------------------------------------------------------------- /config/crd/bases/approuting.kubernetes.azure.com_externaldnses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/config/crd/bases/approuting.kubernetes.azure.com_externaldnses.yaml -------------------------------------------------------------------------------- /config/crd/bases/approuting.kubernetes.azure.com_nginxingresscontrollers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/config/crd/bases/approuting.kubernetes.azure.com_nginxingresscontrollers.yaml -------------------------------------------------------------------------------- /config/gatewaycrd/v1.2.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/config/gatewaycrd/v1.2.0.yaml -------------------------------------------------------------------------------- /devenv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/devenv/.gitignore -------------------------------------------------------------------------------- /devenv/kustomize/operator-deployment/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/devenv/kustomize/operator-deployment/kustomization.yaml -------------------------------------------------------------------------------- /devenv/kustomize/operator-deployment/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/devenv/kustomize/operator-deployment/operator.yaml -------------------------------------------------------------------------------- /devenv/scripts/command_invoke_with_output.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/devenv/scripts/command_invoke_with_output.sh -------------------------------------------------------------------------------- /devenv/scripts/deploy_operator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/devenv/scripts/deploy_operator.sh -------------------------------------------------------------------------------- /devenv/scripts/push_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/devenv/scripts/push_image.sh -------------------------------------------------------------------------------- /devenv/tf/cluster.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/devenv/tf/cluster.tf -------------------------------------------------------------------------------- /devenv/tf/hello_web_app.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/devenv/tf/hello_web_app.tf -------------------------------------------------------------------------------- /devenv/tf/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/devenv/tf/main.tf -------------------------------------------------------------------------------- /devenv/tf/privatedns.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/devenv/tf/privatedns.tf -------------------------------------------------------------------------------- /devenv/tf/publicdns.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/devenv/tf/publicdns.tf -------------------------------------------------------------------------------- /devenv/tf/resourcegroup.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/devenv/tf/resourcegroup.tf -------------------------------------------------------------------------------- /devenv/tf/vault.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/devenv/tf/vault.tf -------------------------------------------------------------------------------- /devenv/tf/workloadidentity.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/devenv/tf/workloadidentity.tf -------------------------------------------------------------------------------- /docker/dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/docker/dev.Dockerfile -------------------------------------------------------------------------------- /docker/e2e.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/docker/e2e.Dockerfile -------------------------------------------------------------------------------- /docker/operator.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/docker/operator.Dockerfile -------------------------------------------------------------------------------- /docs/coverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/docs/coverage.md -------------------------------------------------------------------------------- /docs/e2e-jobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/docs/e2e-jobs.png -------------------------------------------------------------------------------- /docs/e2e.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/docs/e2e.md -------------------------------------------------------------------------------- /docs/local-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/docs/local-testing.md -------------------------------------------------------------------------------- /docs/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/docs/release.md -------------------------------------------------------------------------------- /docs/test-sha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/docs/test-sha.png -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/go.sum -------------------------------------------------------------------------------- /pkg/clients/default-domain/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/clients/default-domain/client.go -------------------------------------------------------------------------------- /pkg/clients/default-domain/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/clients/default-domain/client_test.go -------------------------------------------------------------------------------- /pkg/clients/default-domain/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/clients/default-domain/types.go -------------------------------------------------------------------------------- /pkg/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/config/config.go -------------------------------------------------------------------------------- /pkg/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/config/config_test.go -------------------------------------------------------------------------------- /pkg/config/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/config/types.go -------------------------------------------------------------------------------- /pkg/config/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/config/types_test.go -------------------------------------------------------------------------------- /pkg/controller/common/clean_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/common/clean_type.go -------------------------------------------------------------------------------- /pkg/controller/common/clean_type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/common/clean_type_test.go -------------------------------------------------------------------------------- /pkg/controller/common/cleaner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/common/cleaner.go -------------------------------------------------------------------------------- /pkg/controller/common/cleaner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/common/cleaner_test.go -------------------------------------------------------------------------------- /pkg/controller/common/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/common/main_test.go -------------------------------------------------------------------------------- /pkg/controller/common/resource_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/common/resource_reconciler.go -------------------------------------------------------------------------------- /pkg/controller/common/resource_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/common/resource_reconciler_test.go -------------------------------------------------------------------------------- /pkg/controller/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/controller.go -------------------------------------------------------------------------------- /pkg/controller/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/controller_test.go -------------------------------------------------------------------------------- /pkg/controller/controllername/controllername.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/controllername/controllername.go -------------------------------------------------------------------------------- /pkg/controller/controllername/controllername_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/controllername/controllername_test.go -------------------------------------------------------------------------------- /pkg/controller/crd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/crd.go -------------------------------------------------------------------------------- /pkg/controller/crd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/crd_test.go -------------------------------------------------------------------------------- /pkg/controller/defaultdomaincert/default_domain_cert_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/defaultdomaincert/default_domain_cert_controller.go -------------------------------------------------------------------------------- /pkg/controller/defaultdomaincert/default_domain_cert_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/defaultdomaincert/default_domain_cert_controller_test.go -------------------------------------------------------------------------------- /pkg/controller/dns/cluster_external_dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/dns/cluster_external_dns.go -------------------------------------------------------------------------------- /pkg/controller/dns/cluster_external_dns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/dns/cluster_external_dns_test.go -------------------------------------------------------------------------------- /pkg/controller/dns/consts_for_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/dns/consts_for_test.go -------------------------------------------------------------------------------- /pkg/controller/dns/default_domain_cluster_external_dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/dns/default_domain_cluster_external_dns.go -------------------------------------------------------------------------------- /pkg/controller/dns/default_domain_cluster_external_dns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/dns/default_domain_cluster_external_dns_test.go -------------------------------------------------------------------------------- /pkg/controller/dns/external_dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/dns/external_dns.go -------------------------------------------------------------------------------- /pkg/controller/dns/external_dns_crd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/dns/external_dns_crd.go -------------------------------------------------------------------------------- /pkg/controller/dns/external_dns_crd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/dns/external_dns_crd_test.go -------------------------------------------------------------------------------- /pkg/controller/dns/external_dns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/dns/external_dns_test.go -------------------------------------------------------------------------------- /pkg/controller/dns/mock_dns_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/dns/mock_dns_config_test.go -------------------------------------------------------------------------------- /pkg/controller/dns/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/dns/types.go -------------------------------------------------------------------------------- /pkg/controller/dns/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/dns/util.go -------------------------------------------------------------------------------- /pkg/controller/dns/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/dns/util_test.go -------------------------------------------------------------------------------- /pkg/controller/ingress/concurrency_watchdog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/ingress/concurrency_watchdog.go -------------------------------------------------------------------------------- /pkg/controller/ingress/concurrency_watchdog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/ingress/concurrency_watchdog_test.go -------------------------------------------------------------------------------- /pkg/controller/ingress/ingress_class_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/ingress/ingress_class_reconciler.go -------------------------------------------------------------------------------- /pkg/controller/ingress/ingress_controller_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/ingress/ingress_controller_reconciler.go -------------------------------------------------------------------------------- /pkg/controller/ingress/ingress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/ingress/ingress_test.go -------------------------------------------------------------------------------- /pkg/controller/keyvault/placeholderpod/event_mirror.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/keyvault/placeholderpod/event_mirror.go -------------------------------------------------------------------------------- /pkg/controller/keyvault/placeholderpod/event_mirror_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/keyvault/placeholderpod/event_mirror_test.go -------------------------------------------------------------------------------- /pkg/controller/keyvault/placeholderpod/placeholder_pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/keyvault/placeholderpod/placeholder_pod.go -------------------------------------------------------------------------------- /pkg/controller/keyvault/placeholderpod/placeholder_pod_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/keyvault/placeholderpod/placeholder_pod_test.go -------------------------------------------------------------------------------- /pkg/controller/keyvault/placeholderpod/spc_owner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/keyvault/placeholderpod/spc_owner.go -------------------------------------------------------------------------------- /pkg/controller/keyvault/placeholderpod/spc_owner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/keyvault/placeholderpod/spc_owner_test.go -------------------------------------------------------------------------------- /pkg/controller/keyvault/spc/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/keyvault/spc/consts.go -------------------------------------------------------------------------------- /pkg/controller/keyvault/spc/gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/keyvault/spc/gateway.go -------------------------------------------------------------------------------- /pkg/controller/keyvault/spc/gateway_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/keyvault/spc/gateway_test.go -------------------------------------------------------------------------------- /pkg/controller/keyvault/spc/ingress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/keyvault/spc/ingress.go -------------------------------------------------------------------------------- /pkg/controller/keyvault/spc/ingress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/keyvault/spc/ingress_test.go -------------------------------------------------------------------------------- /pkg/controller/keyvault/spc/nic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/keyvault/spc/nic.go -------------------------------------------------------------------------------- /pkg/controller/keyvault/spc/nic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/keyvault/spc/nic_test.go -------------------------------------------------------------------------------- /pkg/controller/keyvault/spc/parse_kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/keyvault/spc/parse_kv.go -------------------------------------------------------------------------------- /pkg/controller/keyvault/spc/parse_kv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/keyvault/spc/parse_kv_test.go -------------------------------------------------------------------------------- /pkg/controller/keyvault/spc/reconcile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/keyvault/spc/reconcile.go -------------------------------------------------------------------------------- /pkg/controller/keyvault/spc/reconcile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/keyvault/spc/reconcile_test.go -------------------------------------------------------------------------------- /pkg/controller/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/metrics/metrics.go -------------------------------------------------------------------------------- /pkg/controller/nginxingress/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/nginxingress/default.go -------------------------------------------------------------------------------- /pkg/controller/nginxingress/default_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/nginxingress/default_test.go -------------------------------------------------------------------------------- /pkg/controller/nginxingress/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/nginxingress/index.go -------------------------------------------------------------------------------- /pkg/controller/nginxingress/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/nginxingress/index_test.go -------------------------------------------------------------------------------- /pkg/controller/nginxingress/nginx_ingress_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/nginxingress/nginx_ingress_controller.go -------------------------------------------------------------------------------- /pkg/controller/nginxingress/nginx_ingress_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/nginxingress/nginx_ingress_controller_test.go -------------------------------------------------------------------------------- /pkg/controller/nginxingress/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/nginxingress/types.go -------------------------------------------------------------------------------- /pkg/controller/osm/ingress_backend_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/osm/ingress_backend_reconciler.go -------------------------------------------------------------------------------- /pkg/controller/osm/ingress_backend_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/osm/ingress_backend_reconciler_test.go -------------------------------------------------------------------------------- /pkg/controller/osm/ingress_cert_config_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/osm/ingress_cert_config_reconciler.go -------------------------------------------------------------------------------- /pkg/controller/osm/ingress_cert_config_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/osm/ingress_cert_config_reconciler_test.go -------------------------------------------------------------------------------- /pkg/controller/service/ingress_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/service/ingress_reconciler.go -------------------------------------------------------------------------------- /pkg/controller/service/ingress_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/service/ingress_reconciler_test.go -------------------------------------------------------------------------------- /pkg/controller/testutils/fakemanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/testutils/fakemanager.go -------------------------------------------------------------------------------- /pkg/controller/testutils/testcrds/approuting.kubernetes.azure.com_nginxingresscontrollers.yaml: -------------------------------------------------------------------------------- 1 | this is malformed -------------------------------------------------------------------------------- /pkg/controller/testutils/testutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/controller/testutils/testutils.go -------------------------------------------------------------------------------- /pkg/manifests/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/CLAUDE.md -------------------------------------------------------------------------------- /pkg/manifests/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/common.go -------------------------------------------------------------------------------- /pkg/manifests/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/common_test.go -------------------------------------------------------------------------------- /pkg/manifests/external_dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/external_dns.go -------------------------------------------------------------------------------- /pkg/manifests/external_dns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/external_dns_test.go -------------------------------------------------------------------------------- /pkg/manifests/fixtures/common/another-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/common/another-namespace.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/common/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/common/namespace.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/external_dns/all-possibilities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/external_dns/all-possibilities.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/external_dns/full.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/external_dns/full.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/external_dns/gateway-and-ingress-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/external_dns/gateway-and-ingress-crd.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/external_dns/gateway-and-ingress-namespace-scoped-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/external_dns/gateway-and-ingress-namespace-scoped-crd.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/external_dns/gateway-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/external_dns/gateway-crd.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/external_dns/gateway-namespace-scoped-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/external_dns/gateway-namespace-scoped-crd.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/external_dns/ingress-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/external_dns/ingress-crd.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/external_dns/no-ownership.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/external_dns/no-ownership.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/external_dns/private-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/external_dns/private-gateway.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/external_dns/private-ingress-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/external_dns/private-ingress-gateway.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/external_dns/private.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/external_dns/private.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/external_dns/short-sync-interval.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/external_dns/short-sync-interval.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/default_version/full-with-client-ip-logging-and-custom-log-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/default_version/full-with-client-ip-logging-and-custom-log-format.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/default_version/full-with-client-ip-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/default_version/full-with-client-ip-logging.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/default_version/full-with-custom-log-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/default_version/full-with-custom-log-format.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/default_version/full-with-http-disabled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/default_version/full-with-http-disabled.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/default_version/full-with-ip-source-ranges.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/default_version/full-with-ip-source-ranges.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/default_version/full-with-no-source-ranges.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/default_version/full-with-no-source-ranges.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/default_version/full-with-other-ip-source-ranges.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/default_version/full-with-other-ip-source-ranges.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/default_version/full-with-replicas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/default_version/full-with-replicas.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/default_version/full-with-ssl-passthrough.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/default_version/full-with-ssl-passthrough.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/default_version/full-with-target-cpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/default_version/full-with-target-cpu.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/default_version/full.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/default_version/full.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/default_version/internal-with-custom-http-errors-cert-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/default_version/internal-with-custom-http-errors-cert-and-service.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/default_version/internal-with-custom-http-errors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/default_version/internal-with-custom-http-errors.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/default_version/internal-with-default-backend-service-and-ssl-cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/default_version/internal-with-default-backend-service-and-ssl-cert.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/default_version/internal-with-default-backend-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/default_version/internal-with-default-backend-service.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/default_version/internal-with-http-disabled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/default_version/internal-with-http-disabled.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/default_version/internal-with-nil-ssl-cert-and-force-ssl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/default_version/internal-with-nil-ssl-cert-and-force-ssl.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/default_version/internal-with-ssl-cert-and-force-ssl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/default_version/internal-with-ssl-cert-and-force-ssl.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/default_version/internal-with-ssl-cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/default_version/internal-with-ssl-cert.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/default_version/internal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/default_version/internal.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/default_version/kube-system.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/default_version/kube-system.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/default_version/no-ownership.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/default_version/no-ownership.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/default_version/optional-features-disabled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/default_version/optional-features-disabled.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.10.0/full-with-http-disabled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.10.0/full-with-http-disabled.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.10.0/full-with-replicas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.10.0/full-with-replicas.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.10.0/full-with-target-cpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.10.0/full-with-target-cpu.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.10.0/full.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.10.0/full.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.10.0/internal-with-custom-http-errors-cert-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.10.0/internal-with-custom-http-errors-cert-and-service.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.10.0/internal-with-custom-http-errors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.10.0/internal-with-custom-http-errors.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.10.0/internal-with-default-backend-service-and-ssl-cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.10.0/internal-with-default-backend-service-and-ssl-cert.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.10.0/internal-with-default-backend-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.10.0/internal-with-default-backend-service.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.10.0/internal-with-http-disabled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.10.0/internal-with-http-disabled.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.10.0/internal-with-nil-ssl-cert-and-force-ssl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.10.0/internal-with-nil-ssl-cert-and-force-ssl.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.10.0/internal-with-ssl-cert-and-force-ssl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.10.0/internal-with-ssl-cert-and-force-ssl.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.10.0/internal-with-ssl-cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.10.0/internal-with-ssl-cert.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.10.0/internal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.10.0/internal.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.10.0/kube-system.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.10.0/kube-system.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.10.0/no-ownership.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.10.0/no-ownership.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.10.0/optional-features-disabled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.10.0/optional-features-disabled.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.2/full-with-http-disabled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.2/full-with-http-disabled.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.2/full-with-replicas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.2/full-with-replicas.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.2/full-with-target-cpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.2/full-with-target-cpu.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.2/full.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.2/full.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.2/internal-with-custom-http-errors-cert-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.2/internal-with-custom-http-errors-cert-and-service.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.2/internal-with-custom-http-errors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.2/internal-with-custom-http-errors.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.2/internal-with-default-backend-service-and-ssl-cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.2/internal-with-default-backend-service-and-ssl-cert.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.2/internal-with-default-backend-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.2/internal-with-default-backend-service.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.2/internal-with-http-disabled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.2/internal-with-http-disabled.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.2/internal-with-nil-ssl-cert-and-force-ssl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.2/internal-with-nil-ssl-cert-and-force-ssl.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.2/internal-with-ssl-cert-and-force-ssl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.2/internal-with-ssl-cert-and-force-ssl.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.2/internal-with-ssl-cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.2/internal-with-ssl-cert.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.2/internal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.2/internal.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.2/kube-system.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.2/kube-system.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.2/no-ownership.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.2/no-ownership.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.2/optional-features-disabled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.2/optional-features-disabled.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.5/full-with-client-ip-logging-and-custom-log-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.5/full-with-client-ip-logging-and-custom-log-format.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.5/full-with-client-ip-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.5/full-with-client-ip-logging.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.5/full-with-custom-log-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.5/full-with-custom-log-format.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.5/full-with-http-disabled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.5/full-with-http-disabled.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.5/full-with-ip-source-ranges.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.5/full-with-ip-source-ranges.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.5/full-with-no-source-ranges.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.5/full-with-no-source-ranges.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.5/full-with-other-ip-source-ranges.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.5/full-with-other-ip-source-ranges.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.5/full-with-replicas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.5/full-with-replicas.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.5/full-with-ssl-passthrough.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.5/full-with-ssl-passthrough.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.5/full-with-target-cpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.5/full-with-target-cpu.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.5/full.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.5/full.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.5/internal-with-custom-http-errors-cert-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.5/internal-with-custom-http-errors-cert-and-service.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.5/internal-with-custom-http-errors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.5/internal-with-custom-http-errors.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.5/internal-with-default-backend-service-and-ssl-cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.5/internal-with-default-backend-service-and-ssl-cert.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.5/internal-with-default-backend-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.5/internal-with-default-backend-service.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.5/internal-with-http-disabled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.5/internal-with-http-disabled.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.5/internal-with-nil-ssl-cert-and-force-ssl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.5/internal-with-nil-ssl-cert-and-force-ssl.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.5/internal-with-ssl-cert-and-force-ssl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.5/internal-with-ssl-cert-and-force-ssl.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.5/internal-with-ssl-cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.5/internal-with-ssl-cert.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.5/internal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.5/internal.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.5/kube-system.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.5/kube-system.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.5/no-ownership.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.5/no-ownership.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.11.5/optional-features-disabled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.11.5/optional-features-disabled.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.13.1/full-with-client-ip-logging-and-custom-log-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.13.1/full-with-client-ip-logging-and-custom-log-format.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.13.1/full-with-client-ip-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.13.1/full-with-client-ip-logging.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.13.1/full-with-custom-log-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.13.1/full-with-custom-log-format.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.13.1/full-with-http-disabled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.13.1/full-with-http-disabled.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.13.1/full-with-no-source-ranges.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.13.1/full-with-no-source-ranges.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.13.1/full-with-other-ip-source-ranges.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.13.1/full-with-other-ip-source-ranges.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.13.1/full-with-replicas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.13.1/full-with-replicas.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.13.1/full-with-ssl-passthrough.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.13.1/full-with-ssl-passthrough.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.13.1/full-with-target-cpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.13.1/full-with-target-cpu.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.13.1/full.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.13.1/full.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.13.1/internal-with-custom-http-errors-cert-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.13.1/internal-with-custom-http-errors-cert-and-service.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.13.1/internal-with-custom-http-errors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.13.1/internal-with-custom-http-errors.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.13.1/internal-with-default-backend-service-and-ssl-cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.13.1/internal-with-default-backend-service-and-ssl-cert.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.13.1/internal-with-default-backend-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.13.1/internal-with-default-backend-service.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.13.1/internal-with-http-disabled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.13.1/internal-with-http-disabled.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.13.1/internal-with-nil-ssl-cert-and-force-ssl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.13.1/internal-with-nil-ssl-cert-and-force-ssl.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.13.1/internal-with-ssl-cert-and-force-ssl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.13.1/internal-with-ssl-cert-and-force-ssl.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.13.1/internal-with-ssl-cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.13.1/internal-with-ssl-cert.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.13.1/internal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.13.1/internal.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.13.1/kube-system.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.13.1/kube-system.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.13.1/no-ownership.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.13.1/no-ownership.yaml -------------------------------------------------------------------------------- /pkg/manifests/fixtures/nginx/v1.13.1/optional-features-disabled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/fixtures/nginx/v1.13.1/optional-features-disabled.yaml -------------------------------------------------------------------------------- /pkg/manifests/nginx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/nginx.go -------------------------------------------------------------------------------- /pkg/manifests/nginx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/nginx_test.go -------------------------------------------------------------------------------- /pkg/manifests/policy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/README.md -------------------------------------------------------------------------------- /pkg/manifests/policy/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/kustomization.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/expand-apps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/expand-apps.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/k8sblockendpointeditdefaultrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/k8sblockendpointeditdefaultrole.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/k8scontainerlimits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/k8scontainerlimits.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/k8scontainerratios.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/k8scontainerratios.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/k8scontainerrequests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/k8scontainerrequests.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/k8sdisallowanonymous.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/k8sdisallowanonymous.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/k8sdisallowinteractivetty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/k8sdisallowinteractivetty.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/k8shorizontalpodautoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/k8shorizontalpodautoscaler.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/k8spoddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/k8spoddisruptionbudget.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/k8spspallowedusers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/k8spspallowedusers.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/k8spspallowprivilegeescalationcontainer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/k8spspallowprivilegeescalationcontainer.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/k8spspautomountserviceaccounttokenpod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/k8spspautomountserviceaccounttokenpod.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/k8spspcapabilities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/k8spspcapabilities.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/k8spspflexvolumes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/k8spspflexvolumes.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/k8spspforbiddensysctls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/k8spspforbiddensysctls.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/k8spsphostfilesystem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/k8spsphostfilesystem.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/k8spsphostnamespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/k8spsphostnamespace.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/k8spsphostnetworkingports.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/k8spsphostnetworkingports.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/k8spspprivilegedcontainer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/k8spspprivilegedcontainer.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/k8spspprocmount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/k8spspprocmount.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/k8spspreadonlyrootfilesystem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/k8spspreadonlyrootfilesystem.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/k8spspselinuxv2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/k8spspselinuxv2.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/k8spspvolumetypes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/k8spspvolumetypes.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/k8srequiredprobes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/k8srequiredprobes.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8sallowedrepos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8sallowedrepos.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8sblockendpointeditdefaultrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8sblockendpointeditdefaultrole.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8sblockloadbalancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8sblockloadbalancer.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8sblocknodeport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8sblocknodeport.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8sblockwildcardingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8sblockwildcardingress.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8scontainerephemeralstoragelimit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8scontainerephemeralstoragelimit.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8scontainerlimits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8scontainerlimits.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8scontainerratios.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8scontainerratios.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8scontainerrequests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8scontainerrequests.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8sdisallowanonymous.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8sdisallowanonymous.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8sdisallowedrepos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8sdisallowedrepos.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8sdisallowedtags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8sdisallowedtags.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8sdisallowinteractivetty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8sdisallowinteractivetty.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8sexternalips.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8sexternalips.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8shorizontalpodautoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8shorizontalpodautoscaler.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8shttpsonly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8shttpsonly.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8simagedigests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8simagedigests.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8spoddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8spoddisruptionbudget.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8spspallowedusers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8spspallowedusers.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8spspallowprivilegeescalationcontainer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8spspallowprivilegeescalationcontainer.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8spspapparmor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8spspapparmor.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8spspautomountserviceaccounttokenpod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8spspautomountserviceaccounttokenpod.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8spspcapabilities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8spspcapabilities.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8spspflexvolumes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8spspflexvolumes.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8spspforbiddensysctls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8spspforbiddensysctls.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8spspfsgroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8spspfsgroup.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8spsphostfilesystem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8spsphostfilesystem.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8spsphostnamespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8spsphostnamespace.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8spsphostnetworkingports.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8spsphostnetworkingports.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8spspprivilegedcontainer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8spspprivilegedcontainer.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8spspprocmount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8spspprocmount.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8spspreadonlyrootfilesystem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8spspreadonlyrootfilesystem.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8spspseccomp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8spspseccomp.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8spspselinuxv2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8spspselinuxv2.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8spspvolumetypes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8spspvolumetypes.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8sreplicalimits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8sreplicalimits.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8srequiredannotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8srequiredannotations.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8srequiredlabels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8srequiredlabels.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8srequiredprobes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8srequiredprobes.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8srequiredresources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8srequiredresources.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8sstorageclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8sstorageclass.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8suniqueingresshost.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8suniqueingresshost.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/k8suniqueserviceselector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/k8suniqueserviceselector.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/noupdateserviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/noupdateserviceaccount.yaml -------------------------------------------------------------------------------- /pkg/manifests/policy/manifests/templates/verifydeprecatedapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/policy/manifests/templates/verifydeprecatedapi.yaml -------------------------------------------------------------------------------- /pkg/manifests/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/manifests/types.go -------------------------------------------------------------------------------- /pkg/store/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/store/store.go -------------------------------------------------------------------------------- /pkg/store/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/store/store_test.go -------------------------------------------------------------------------------- /pkg/tls/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/tls/tls.go -------------------------------------------------------------------------------- /pkg/tls/tls_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/tls/tls_test.go -------------------------------------------------------------------------------- /pkg/util/controller_errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/util/controller_errors.go -------------------------------------------------------------------------------- /pkg/util/controller_errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/util/controller_errors_test.go -------------------------------------------------------------------------------- /pkg/util/gateway_index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/util/gateway_index.go -------------------------------------------------------------------------------- /pkg/util/gateway_index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/util/gateway_index_test.go -------------------------------------------------------------------------------- /pkg/util/ingress_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/util/ingress_manager.go -------------------------------------------------------------------------------- /pkg/util/serviceaccount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/util/serviceaccount.go -------------------------------------------------------------------------------- /pkg/util/serviceaccount_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/util/serviceaccount_test.go -------------------------------------------------------------------------------- /pkg/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/util/util.go -------------------------------------------------------------------------------- /pkg/util/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/pkg/util/util_test.go -------------------------------------------------------------------------------- /testing/e2e/clients/acr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/clients/acr.go -------------------------------------------------------------------------------- /testing/e2e/clients/aks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/clients/aks.go -------------------------------------------------------------------------------- /testing/e2e/clients/akv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/clients/akv.go -------------------------------------------------------------------------------- /testing/e2e/clients/application.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/clients/application.go -------------------------------------------------------------------------------- /testing/e2e/clients/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/clients/auth.go -------------------------------------------------------------------------------- /testing/e2e/clients/azcred.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/clients/azcred.go -------------------------------------------------------------------------------- /testing/e2e/clients/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/clients/dns.go -------------------------------------------------------------------------------- /testing/e2e/clients/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/clients/exec.go -------------------------------------------------------------------------------- /testing/e2e/clients/identity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/clients/identity.go -------------------------------------------------------------------------------- /testing/e2e/clients/name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/clients/name.go -------------------------------------------------------------------------------- /testing/e2e/clients/poll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/clients/poll.go -------------------------------------------------------------------------------- /testing/e2e/clients/resourcegroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/clients/resourcegroup.go -------------------------------------------------------------------------------- /testing/e2e/cmd/deploy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/cmd/deploy.go -------------------------------------------------------------------------------- /testing/e2e/cmd/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/cmd/flags.go -------------------------------------------------------------------------------- /testing/e2e/cmd/infra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/cmd/infra.go -------------------------------------------------------------------------------- /testing/e2e/cmd/matrix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/cmd/matrix.go -------------------------------------------------------------------------------- /testing/e2e/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/cmd/root.go -------------------------------------------------------------------------------- /testing/e2e/cmd/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/cmd/test.go -------------------------------------------------------------------------------- /testing/e2e/github/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/github/actions.go -------------------------------------------------------------------------------- /testing/e2e/infra/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/infra/convert.go -------------------------------------------------------------------------------- /testing/e2e/infra/deploy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/infra/deploy.go -------------------------------------------------------------------------------- /testing/e2e/infra/infras.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/infra/infras.go -------------------------------------------------------------------------------- /testing/e2e/infra/provision.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/infra/provision.go -------------------------------------------------------------------------------- /testing/e2e/infra/region.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/infra/region.go -------------------------------------------------------------------------------- /testing/e2e/infra/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/infra/types.go -------------------------------------------------------------------------------- /testing/e2e/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/logger/logger.go -------------------------------------------------------------------------------- /testing/e2e/manifests/clientServer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/manifests/clientServer.go -------------------------------------------------------------------------------- /testing/e2e/manifests/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/manifests/common.go -------------------------------------------------------------------------------- /testing/e2e/manifests/customErrorsClientServer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/manifests/customErrorsClientServer.go -------------------------------------------------------------------------------- /testing/e2e/manifests/defaultBackendClientServer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/manifests/defaultBackendClientServer.go -------------------------------------------------------------------------------- /testing/e2e/manifests/e2e.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/manifests/e2e.go -------------------------------------------------------------------------------- /testing/e2e/manifests/embedded/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/manifests/embedded/404.html -------------------------------------------------------------------------------- /testing/e2e/manifests/embedded/503.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/manifests/embedded/503.html -------------------------------------------------------------------------------- /testing/e2e/manifests/embedded/client.golang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/manifests/embedded/client.golang -------------------------------------------------------------------------------- /testing/e2e/manifests/embedded/customErrorsClient.golang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/manifests/embedded/customErrorsClient.golang -------------------------------------------------------------------------------- /testing/e2e/manifests/embedded/defaultBackendClient.golang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/manifests/embedded/defaultBackendClient.golang -------------------------------------------------------------------------------- /testing/e2e/manifests/embedded/defaultBackendServer.golang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/manifests/embedded/defaultBackendServer.golang -------------------------------------------------------------------------------- /testing/e2e/manifests/embedded/prom.golang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/manifests/embedded/prom.golang -------------------------------------------------------------------------------- /testing/e2e/manifests/embedded/server.golang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/manifests/embedded/server.golang -------------------------------------------------------------------------------- /testing/e2e/manifests/nginxIngressController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/manifests/nginxIngressController.go -------------------------------------------------------------------------------- /testing/e2e/manifests/operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/manifests/operator.go -------------------------------------------------------------------------------- /testing/e2e/manifests/prometheus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/manifests/prometheus.go -------------------------------------------------------------------------------- /testing/e2e/suites/all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/suites/all.go -------------------------------------------------------------------------------- /testing/e2e/suites/basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/suites/basic.go -------------------------------------------------------------------------------- /testing/e2e/suites/clusterexternaldns_crd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/suites/clusterexternaldns_crd.go -------------------------------------------------------------------------------- /testing/e2e/suites/defaultBackendService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/suites/defaultBackendService.go -------------------------------------------------------------------------------- /testing/e2e/suites/defaultdomain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/suites/defaultdomain.go -------------------------------------------------------------------------------- /testing/e2e/suites/externaldns_crd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/suites/externaldns_crd.go -------------------------------------------------------------------------------- /testing/e2e/suites/nginxIngressController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/suites/nginxIngressController.go -------------------------------------------------------------------------------- /testing/e2e/suites/operatorConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/suites/operatorConfig.go -------------------------------------------------------------------------------- /testing/e2e/suites/osm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/suites/osm.go -------------------------------------------------------------------------------- /testing/e2e/suites/prometheus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/suites/prometheus.go -------------------------------------------------------------------------------- /testing/e2e/suites/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/suites/utils.go -------------------------------------------------------------------------------- /testing/e2e/suites/workloadidentity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/suites/workloadidentity.go -------------------------------------------------------------------------------- /testing/e2e/tests/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/tests/run.go -------------------------------------------------------------------------------- /testing/e2e/tests/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-app-routing-operator/HEAD/testing/e2e/tests/types.go --------------------------------------------------------------------------------