├── .chglog ├── CHANGELOG.tpl.md └── config.yml ├── .devcontainer.json ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── config.yml ├── policies │ ├── advanced-security.yml │ └── branch-protection.yml ├── semantic.yml ├── stale.yml └── workflows │ ├── codeql.yml │ ├── create-release-branch.yaml │ ├── large-cluster-test.yaml │ ├── nightly-build.yaml │ ├── pr.yaml │ ├── release.yaml │ ├── test-cluster-config.yaml │ ├── test-upgrade.yaml │ ├── test-vhd-no-egress.yaml │ └── update-go-mod-vendor.yaml ├── .gitignore ├── .golangci.yml ├── .pipelines ├── e2e-job-template.yaml ├── e2e-step-template.yaml ├── marketplace-sku.yaml ├── pr-e2e.yaml ├── pr-windows-signed-scripts.yaml ├── vhd-build-publish-windows.yaml ├── vhd-builder-windows-template.yaml ├── vhd-builder-windows.yaml ├── vhd-builder.yaml └── vhd-publish-template.yaml ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Jenkinsfile ├── LICENSE ├── Makefile ├── OWNERS ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── cmd ├── addpool.go ├── addpool_test.go ├── deploy.go ├── deploy_test.go ├── doc.go ├── generate.go ├── generate_test.go ├── get_logs.go ├── get_logs_test.go ├── get_versions.go ├── get_versions_test.go ├── orchestrators.go ├── orchestrators_test.go ├── root.go ├── root_test.go ├── rotate_certs.go ├── rotate_certs_test.go ├── rotatecerts │ ├── arm.go │ ├── internal │ │ ├── interfaces.go │ │ └── mock_internal │ │ │ ├── client_mock.go │ │ │ └── doc.go │ ├── operations.go │ ├── operations_test.go │ ├── wait.go │ └── wait_test.go ├── scale.go ├── scale_test.go ├── translations │ └── en_US │ │ └── LC_MESSAGES │ │ ├── acsengine.mo │ │ └── acsengine.po ├── upgrade.go ├── upgrade_test.go ├── version.go └── version_test.go ├── docs ├── README.md ├── community │ ├── README.md │ ├── code-of-conduct.md │ ├── developer-guide.md │ ├── e2e-output-example.log │ ├── example-launch.json │ ├── planning-process.md │ ├── release-checklist.md │ └── running-tests.md ├── design │ ├── cert-rotation.md │ └── custom-container-images.md ├── faq.md ├── howto │ ├── README.md │ ├── building-vhds.md │ ├── building-windows-kubernetes-binaries.md │ ├── mixed-cluster-ingress.md │ └── troubleshooting.md ├── static │ └── img │ │ ├── acrblade.png │ │ ├── architectures.vsdx │ │ ├── attach_archives.png │ │ ├── cosmos-etcd-account.png │ │ ├── debug-code.png │ │ ├── debug-test.png │ │ ├── deployfirstapp.png │ │ ├── dockercomposescale.png │ │ ├── dockerinfo.png │ │ ├── dockernodels.png │ │ ├── dockerps.png │ │ ├── dockerserviceps.png │ │ ├── dockerservicescale.png │ │ ├── draft_new_release.png │ │ ├── hybrid-trafficflow.png │ │ ├── install-go-extension.png │ │ ├── k8s-monitoring-dashboard.png │ │ ├── kubernetes-dashboard.png │ │ ├── kubernetes-hybrid-env.png │ │ ├── kubernetes-nginx1.png │ │ ├── kubernetes-nginx2.png │ │ ├── kubernetes-nginx3.png │ │ ├── kubernetes-nginx4.png │ │ ├── kubernetes-remote.png │ │ ├── kubernetes-windows.png │ │ ├── kubernetes.png │ │ ├── newapp-status.pn.png │ │ ├── portal-kubernetes-outputs.png │ │ ├── portal-publicipaddresses.png │ │ ├── portal-resourcegroups.png │ │ ├── proposed-template-refactor.jpg │ │ ├── rdptunnels.png │ │ ├── release_notes.png │ │ └── simpleweb.png ├── topics │ ├── README.md │ ├── aad.md │ ├── addpool.md │ ├── architecture.md │ ├── azure-acr-credential-provider.md │ ├── azure-api-throttling.md │ ├── azure-stack.md │ ├── calico-3.3.1-cleanup-after-upgrade.yaml │ ├── clusterdefinitions.md │ ├── coredns.md │ ├── creating_new_clusters.md │ ├── csi-proxy-windows.md │ ├── extensions.md │ ├── features.md │ ├── get-logs.md │ ├── gpu.md │ ├── hybrid-environment.md │ ├── keyvault-secrets.md │ ├── monitoring.md │ ├── pod-security.md │ ├── proxy-servers.md │ ├── rotate-certs.md │ ├── scale.md │ ├── seccomp-profile.md │ ├── service-account-token-secrets.md │ ├── service-principals.md │ ├── sgx.md │ ├── sgx │ │ ├── device-plugin-before-k8s-1-17.yaml │ │ └── device-plugin.yaml │ ├── telemetry.md │ ├── ubuntu-stig.md │ ├── upgrade.md │ ├── windows-and-kubernetes.md │ ├── windows-dsr.md │ ├── windows-provisioning-scripts-release-notes.md │ ├── windows-provisioning-scripts.md │ ├── windows-vhd.md │ └── windows.md └── tutorials │ ├── README.md │ ├── cli-overview.md │ ├── containermonitoringaddon.md │ ├── custom-vnet.md │ └── quickstart.md ├── examples ├── README.md ├── addons │ ├── aad-pod-identity │ │ ├── README.md │ │ └── kubernetes-aad-pod-identity.json │ ├── appgw-ingress │ │ ├── README.md │ │ └── kubernetes-appgw-ingress.json │ ├── azure-arc-onboarding │ │ ├── README.md │ │ └── kubernetes-arc.json │ ├── azure-policy │ │ ├── README.md │ │ └── azure-policy.json │ ├── cluster-autoscaler │ │ ├── README.md │ │ └── kubernetes-cluster-autoscaler.json │ ├── csi-secrets-store │ │ ├── README.md │ │ └── kubernetes-csi-secrets-store.json │ ├── custom-manifests │ │ └── kubernetes-custom-psp.json │ ├── node-problem-detector │ │ ├── README.md │ │ └── node-problem-detector.json │ └── nvidia-device-plugin │ │ ├── README.md │ │ └── nvidia-device-plugin.json ├── addpool │ ├── addpool.sh │ ├── agentpool.json │ └── apimodel.json ├── agents-only.json ├── azure-stack │ ├── kubernetes-azurestack.json │ ├── kubernetes-windows.json │ └── migratepv.sh ├── cosmos-etcd │ ├── kubernetes-3-masters-cosmos.json │ └── readme.md ├── custom-image.json ├── custom-shared-image.json ├── customfiles │ ├── README.md │ └── kubernetes-customfiles-podnodeselector.json ├── disa-stig │ └── kubernetes-ubuntu20-stig.json ├── disks-ephemeral │ ├── README.md │ ├── ephemeral-disks.json │ └── kubernetes-vmas.json ├── disks-managed │ ├── README.md │ ├── kubernetes-preAttachedDisks-vmas.json │ └── kubernetes-vmas.json ├── disks-storageaccount │ ├── README.md │ ├── kubernetes-master-sa.json │ └── kubernetes.json ├── dualstack │ ├── README.md │ ├── kubernetes-iptables.json │ ├── kubernetes-windows.json │ └── kubernetes.json ├── e2e-tests │ ├── kubernetes │ │ ├── flatcar │ │ │ └── flatcar.json │ │ ├── gpu-enabled │ │ │ └── definition.json │ │ ├── kubernetes-config │ │ │ ├── addons-disabled.json │ │ │ ├── addons-enabled.json │ │ │ └── network-plugin-kubenet.json │ │ ├── node-count │ │ │ └── 50-nodes │ │ │ │ └── definition.json │ │ ├── release │ │ │ └── default │ │ │ │ ├── definition-no-vnet.json │ │ │ │ ├── definition-stig.json │ │ │ │ └── definition.json │ │ ├── windows │ │ │ ├── definition.json │ │ │ └── hybrid │ │ │ │ └── definition.json │ │ └── zones │ │ │ └── definition.json │ └── userassignedidentity │ │ ├── vmas │ │ ├── kubernetes-vmas-multimaster.json │ │ └── kubernetes-vmas.json │ │ └── vmss │ │ └── kubernetes-vmss.json ├── extensions │ ├── kubernetes.json │ ├── kubernetes.oms.json │ ├── kubernetes.preprovision.json │ └── prometheus-grafana-k8s.json ├── feature-gates │ └── kubernetes-featuresgates.json ├── flatcar │ ├── kubernetes-flatcar-hybrid.json │ └── kubernetes-flatcar.json ├── ipv6 │ ├── README.md │ └── kubernetes.json ├── ipvs │ └── kubernetes-msi.json ├── keyvault-params │ ├── README.md │ └── kubernetes.json ├── keyvaultcerts │ ├── README.md │ └── kubernetes.json ├── kubernetes-D2.json ├── kubernetes-config │ ├── README.md │ ├── kubernetes-accelerated-network.json │ ├── kubernetes-cloud-controller-manager.json │ ├── kubernetes-clustersubnet.json │ ├── kubernetes-containerd-tmpdir.json │ ├── kubernetes-data-encryption-at-rest.json │ ├── kubernetes-docker-tmpdir.json │ ├── kubernetes-dockerbridgesubnet.json │ ├── kubernetes-etcd-storage-size.json │ ├── kubernetes-gc.json │ ├── kubernetes-keyvault-encryption.json │ ├── kubernetes-kube-reserved.json │ ├── kubernetes-maxpods.json │ ├── kubernetes-private-cluster-single-master.json │ ├── kubernetes-private-cluster.json │ └── kubernetes-standardlb.json ├── kubernetes-gpu │ └── kubernetes.json ├── kubernetes-kubenet-containerd.json ├── kubernetes-labels │ ├── README.md │ ├── images │ │ └── kubernetesnodelabels.png │ └── kubernetes.json ├── kubernetes-msi-userassigned │ ├── kube-vma.json │ └── kube-vmss.json ├── kubernetes-non-vhd-distros.json ├── kubernetes-releases │ ├── kubernetes1.23.json │ ├── kubernetes1.24.json │ ├── kubernetes1.25.json │ ├── kubernetes1.26.json │ ├── kubernetes1.27.json │ ├── kubernetes1.28.json │ ├── kubernetes1.29.json │ ├── kubernetes1.30.json │ ├── kubernetes1.31.json │ ├── kubernetes1.32.json │ └── kubernetes1.33.json ├── kubernetes-vmss-master │ ├── customvnet.json │ ├── kubernetes.json │ └── windows.json ├── kubernetes-vmss-spot │ └── kubernetes.json ├── kubernetes-vmss │ └── kubernetes.json ├── kubernetes-zones │ └── README.md ├── kubernetes.json ├── largeclusters │ ├── README.md │ └── kubernetes.json ├── managed-identity │ └── kubernetes-msi.json ├── multiple-masters │ ├── kubernetes-3-masters.json │ └── kubernetes-5-masters.json ├── multiple-nodepools │ ├── README.md │ └── multipool.json ├── networkplugin │ ├── README.md │ └── kubernetes-azure.json ├── networkpolicy │ ├── README.md │ ├── kubernetes-antrea.json │ ├── kubernetes-calico-azure.json │ ├── kubernetes-calico-kubenet.json │ └── kubernetes-cilium.json ├── no_outbound.json ├── service-mesh │ ├── README.md │ └── istio.json ├── ubuntu-1804 │ └── kubernetes.json ├── vnet │ ├── README.md │ ├── kubernetes-master-vmss.json │ ├── kubernetesvnet-azure-cni.json │ ├── kubernetesvnet-customnodesdns.json │ ├── kubernetesvnet-customsearchdomain.json │ ├── kubernetesvnet.json │ └── vnetarmtemplate │ │ ├── azuredeploy.kubernetes.json │ │ └── deploy.ps1 └── windows │ ├── README.md │ ├── kubernetes-D2.json │ ├── kubernetes-custom-image.json │ ├── kubernetes-custom-shared-image.json │ ├── kubernetes-custom-vhd.json │ ├── kubernetes-hybrid.azure-containerd.json │ ├── kubernetes-hybrid.json │ ├── kubernetes-hybrid.kubenet-containerd.json │ ├── kubernetes-hyperv.json │ ├── kubernetes-manageddisks.json │ ├── kubernetes-master-sa.json │ ├── kubernetes-pause-image.json │ ├── kubernetes-sadisks.json │ ├── kubernetes-wincni.json │ ├── kubernetes-windows-1903.json │ ├── kubernetes-windows-1909.json │ ├── kubernetes-windows-docker-version.json │ ├── kubernetes-windows-tls.json │ ├── kubernetes-windows-version.json │ ├── kubernetes-windsr.json │ └── kubernetes.json ├── extensions ├── choco │ ├── README.md │ └── v1 │ │ ├── ChocolateyPackageInstaller.ps1 │ │ ├── startChocolatey.ps1 │ │ ├── supported-orchestrators.json │ │ ├── template-link.json │ │ └── template.json ├── dnsupdate │ └── v1 │ │ └── register-dns.sh ├── hello-world-k8s │ ├── README.md │ └── v1 │ │ ├── hello-world-k8s.sh │ │ ├── supported-orchestrators.json │ │ ├── template-link.json │ │ └── template.json ├── hello-world │ ├── README.md │ └── v1 │ │ ├── hello.sh │ │ └── supported-orchestrators.json ├── prometheus-grafana-k8s │ ├── README.md │ └── v1 │ │ ├── cadvisor_daemonset.yml │ │ ├── prometheus-grafana-k8s.sh │ │ ├── prometheus_values.yaml │ │ ├── supported-orchestrators.json │ │ ├── template-link.json │ │ └── template.json ├── windows-patches │ ├── README.md │ └── v1 │ │ ├── installPatches.ps1 │ │ ├── supported-orchestrators.json │ │ ├── template-link.json │ │ └── template.json └── winrm │ ├── README.md │ └── v1 │ ├── enableWinrm.ps1 │ ├── supported-orchestrators.json │ ├── template-link.json │ └── template.json ├── go.mod ├── go.sum ├── hack └── tools │ └── Makefile ├── main.go ├── makedev.ps1 ├── packer.mk ├── parts ├── agentoutputs.t ├── agentparams.t ├── iaasoutputs.t ├── k8s │ ├── addons │ │ ├── aad-default-admin-group-rbac.yaml │ │ ├── aad-pod-identity.yaml │ │ ├── antrea.yaml │ │ ├── arc-onboarding.yaml │ │ ├── audit-policy.yaml │ │ ├── azure-cloud-provider.yaml │ │ ├── azure-network-policy.yaml │ │ ├── azure-policy-deployment.yaml │ │ ├── azuredisk-csi-driver-deployment.yaml │ │ ├── azurefile-csi-driver-deployment.yaml │ │ ├── calico.yaml │ │ ├── cilium.yaml │ │ ├── cloud-node-manager.yaml │ │ ├── cluster-autoscaler.yaml │ │ ├── coredns.yaml │ │ ├── flannel.yaml │ │ ├── ip-masq-agent.yaml │ │ ├── kube-dns.yaml │ │ ├── kube-proxy.yaml │ │ ├── kubernetes-dashboard.yaml │ │ ├── metrics-server.yaml │ │ ├── node-problem-detector.yaml │ │ ├── nvidia-device-plugin.yaml │ │ ├── pod-security-policy.yaml │ │ ├── scheduled-maintenance-deployment.yaml │ │ ├── secrets-store-csi-driver.yaml │ │ ├── smb-flexvolume.yaml │ │ └── tiller.yaml │ ├── armparameters.t │ ├── cloud-init │ │ ├── artifacts │ │ │ ├── apiserver-admission-control.yaml │ │ │ ├── apiserver-monitor.service │ │ │ ├── apt-preferences │ │ │ ├── auditd-rules │ │ │ ├── cis.sh │ │ │ ├── credential-provider-config.yaml │ │ │ ├── cse_config.sh │ │ │ ├── cse_customcloud.sh │ │ │ ├── cse_helpers.sh │ │ │ ├── cse_install.sh │ │ │ ├── cse_main.sh │ │ │ ├── cse_stig_ubuntu2004.sh │ │ │ ├── cse_stig_ubuntu2204.sh │ │ │ ├── default-grub │ │ │ ├── dhcpv6.service │ │ │ ├── docker-monitor.service │ │ │ ├── docker_clear_mount_propagation_flags.conf │ │ │ ├── enable-dhcpv6.sh │ │ │ ├── etc-issue │ │ │ ├── etc-issue-stig.net │ │ │ ├── etc-issue.net │ │ │ ├── etcd-monitor.service │ │ │ ├── etcd.service │ │ │ ├── generateproxycerts.sh │ │ │ ├── health-monitor.sh │ │ │ ├── kms-keyvault-key.service │ │ │ ├── kms-keyvault-key.sh │ │ │ ├── kubelet-monitor.service │ │ │ ├── kubelet-monitor.timer │ │ │ ├── kubelet.service │ │ │ ├── label-nodes.service │ │ │ ├── label-nodes.sh │ │ │ ├── modprobe-CIS.conf │ │ │ ├── pam-d-common-auth │ │ │ ├── pam-d-common-password │ │ │ ├── pam-d-su │ │ │ ├── profile-d-cis.sh │ │ │ ├── pwquality-CIS.conf │ │ │ ├── rsyslog-d-60-CIS.conf │ │ │ ├── setup-custom-search-domains.sh │ │ │ ├── sshd_config │ │ │ ├── sshd_config_1604 │ │ │ ├── sys-fs-bpf.mount │ │ │ ├── sysctl-d-60-CIS.conf │ │ │ ├── untaint-nodes.service │ │ │ └── untaint-nodes.sh │ │ ├── jumpboxcustomdata.yml │ │ ├── masternodecustomdata.yml │ │ └── nodecustomdata.yml │ ├── containerdtemplate.toml │ ├── kubeconfig.json │ ├── kubernetesparams.t │ ├── kuberneteswindowsfunctions.ps1 │ ├── kuberneteswindowssetup.ps1 │ ├── manifests │ │ ├── kubernetesmaster-azure-kubernetes-kms.yaml │ │ ├── kubernetesmaster-cloud-controller-manager.yaml │ │ ├── kubernetesmaster-kube-addon-manager.yaml │ │ ├── kubernetesmaster-kube-apiserver.yaml │ │ ├── kubernetesmaster-kube-controller-manager.yaml │ │ └── kubernetesmaster-kube-scheduler.yaml │ ├── rotate-certs.ps1 │ ├── rotate-certs.sh │ ├── windowsazurecnifunc.ps1 │ ├── windowsazurecnifunc.tests.ps1 │ ├── windowscnifunc.ps1 │ ├── windowsconfigfunc.ps1 │ ├── windowscontainerdfunc.ps1 │ ├── windowscsiproxyfunc.ps1 │ ├── windowshostsconfigagentfunc.ps1 │ ├── windowsinstallopensshfunc.ps1 │ └── windowskubeletfunc.ps1 ├── masteroutputs.t ├── masterparams.t └── windowsparams.t ├── pkg ├── api │ ├── addons.go │ ├── addons_test.go │ ├── apiloader.go │ ├── apiloader_test.go │ ├── azenvtypes.go │ ├── azenvtypes_test.go │ ├── common │ │ ├── const.go │ │ ├── doc.go │ │ ├── flags.go │ │ ├── flags_test.go │ │ ├── helper.go │ │ ├── helper_test.go │ │ ├── net.go │ │ ├── net_test.go │ │ ├── types.go │ │ ├── versions.go │ │ └── versions_test.go │ ├── components.go │ ├── components_test.go │ ├── const.go │ ├── converterfromapi.go │ ├── converterfromapi_test.go │ ├── convertertoapi.go │ ├── convertertoapi_test.go │ ├── defaults-apiserver.go │ ├── defaults-apiserver_test.go │ ├── defaults-cloud-controller-manager.go │ ├── defaults-cloud-controller-manager_test.go │ ├── defaults-controller-manager.go │ ├── defaults-controller-manager_test.go │ ├── defaults-custom-cloud-profile.go │ ├── defaults-kubelet.go │ ├── defaults-kubelet_test.go │ ├── defaults-scheduler.go │ ├── defaults-scheduler_test.go │ ├── defaults-sysctld.go │ ├── defaults-sysctld_test.go │ ├── defaults.go │ ├── defaults_test.go │ ├── doc.go │ ├── k8s_versions.go │ ├── k8s_versions_test.go │ ├── mocks.go │ ├── orchestrators.go │ ├── orchestrators_test.go │ ├── strictjson.go │ ├── strictjson_test.go │ ├── types.go │ ├── types_test.go │ └── vlabs │ │ ├── azenvtypes.go │ │ ├── const.go │ │ ├── doc.go │ │ ├── merge.go │ │ ├── merge_test.go │ │ ├── orchestratorversiontypes.go │ │ ├── types.go │ │ ├── types_test.go │ │ ├── validate.go │ │ └── validate_test.go ├── armhelpers │ ├── azureclient.go │ ├── compute.go │ ├── compute_test.go │ ├── const.go │ ├── credentials.go │ ├── deploymentError.go │ ├── deploymentError_test.go │ ├── deploymentOperations.go │ ├── deployment_test.go │ ├── deployments.go │ ├── disk.go │ ├── disk_test.go │ ├── doc.go │ ├── graph.go │ ├── groupsclient.go │ ├── httpMockClient.go │ ├── httpMockClientData │ │ ├── createOrUpdateResourceGroup.json │ │ ├── createOrUpdateSolution.json │ │ ├── createOrUpdateWorkspace.json │ │ ├── createOrUpdateWorkspaceInMC.json │ │ ├── deployVMRequest.json │ │ ├── deployVMResponse.json │ │ ├── deploymentVMError.json │ │ ├── getAvailabilitySet.json │ │ ├── getListWorkspacesByResourceGroup.json │ │ ├── getListWorkspacesByResourceGroupInMC.json │ │ ├── getLogAnalyticsWorkspace.json │ │ ├── getLogAnalyticsWorkspaceSharedKeys.json │ │ ├── getVirtualMachine.json │ │ ├── getVirtualMachineImage.json │ │ ├── listVirtualMachineImages.json │ │ ├── listVirtualMachineScaleSetVMs.json │ │ ├── listVirtualMachineScaleSets.json │ │ ├── listVirtualMachines.json │ │ └── tokenResponse.json │ ├── interfaces.go │ ├── mockclients.go │ ├── network.go │ ├── network_test.go │ ├── providers.go │ ├── storage.go │ ├── support_validator.go │ ├── support_validator_test.go │ ├── tenantid.go │ ├── tenantid_test.go │ ├── testserver │ │ └── testServer.go │ ├── utils │ │ ├── util.go │ │ └── util_test.go │ ├── vmImage.go │ └── vmImage_test.go ├── engine │ ├── applicationgateway.go │ ├── applicationgateway_test.go │ ├── armoutputs.go │ ├── armoutputs_test.go │ ├── armresources.go │ ├── armresources_test.go │ ├── armtype.go │ ├── armtype_test.go │ ├── armvariables.go │ ├── armvariables_test.go │ ├── artifacts.go │ ├── artifacts_test.go │ ├── availabilitysets.go │ ├── availabilitysets_test.go │ ├── const.go │ ├── cosmosdb.go │ ├── cosmosdb_test.go │ ├── cse.go │ ├── cse_test.go │ ├── customfiles.go │ ├── customfiles_test.go │ ├── deployment.go │ ├── deployment_test.go │ ├── doc.go │ ├── engine.go │ ├── engine_test.go │ ├── fileloader.go │ ├── images.go │ ├── images_test.go │ ├── ipaddresses.go │ ├── ipaddresses_test.go │ ├── keyvaults.go │ ├── keyvaults_test.go │ ├── loadbalancers.go │ ├── loadbalancers_test.go │ ├── masterarmresources.go │ ├── masterarmresources_test.go │ ├── networkinterfaces.go │ ├── networkinterfaces_test.go │ ├── networksecuritygroups.go │ ├── networksecuritygroups_test.go │ ├── output.go │ ├── output_test.go │ ├── params.go │ ├── params_k8s.go │ ├── params_k8s_test.go │ ├── params_test.go │ ├── profiles │ │ └── certificate-profile │ │ │ └── kubernetes.json │ ├── roleassignments.go │ ├── roleassignments_test.go │ ├── routetables.go │ ├── routetables_test.go │ ├── storageaccounts.go │ ├── storageaccounts_test.go │ ├── systemroleassignments.go │ ├── systemroleassignments_test.go │ ├── template_generator.go │ ├── template_generator_test.go │ ├── templates_generated.go │ ├── testdata │ │ ├── addons │ │ │ ├── kubernetes-custom-psp.json │ │ │ ├── kubernetes-kube-proxy.json │ │ │ └── kubernetes.json │ │ ├── azurestack │ │ │ ├── kubernetes-ubuntu18.json │ │ │ └── kubernetes.json │ │ ├── customcloud │ │ │ └── kubernetes.json │ │ ├── disks-managed │ │ │ ├── kubernetes-vmas.json │ │ │ └── kubernetes-vmss.json │ │ ├── disks-storageaccount │ │ │ └── kubernetes.json │ │ ├── etcd-versions │ │ │ └── kubernetes.json │ │ ├── extensions │ │ │ └── kubernetes.json │ │ ├── key-vault-certs │ │ │ └── kubernetes.json │ │ ├── key-vault-params │ │ │ └── kubernetes.json │ │ ├── kubernetesversions │ │ │ └── 1.13.json │ │ ├── largeclusters │ │ │ ├── kubernetes-vmss.json │ │ │ └── kubernetes.json │ │ ├── location │ │ │ └── kubernetes.json │ │ ├── mastersonly │ │ │ └── mastersonly.json │ │ ├── rename.sh │ │ ├── simple │ │ │ └── kubernetes.json │ │ ├── vnet │ │ │ └── kubernetesvnet.json │ │ └── windows │ │ │ ├── kubernetes-hybrid.json │ │ │ ├── kubernetes-kubernetesconfig.json │ │ │ ├── kubernetes-vmss.json │ │ │ └── kubernetes.json │ ├── testutils.go │ ├── transform │ │ ├── apimodel_merger.go │ │ ├── apimodel_merger_test.go │ │ ├── doc.go │ │ ├── json.go │ │ ├── transform.go │ │ ├── transform_test.go │ │ └── transformtestfiles │ │ │ ├── k8s_addpool_vmas.json │ │ │ ├── k8s_agent_upgrade_template.json │ │ │ ├── k8s_master_only_upgrade_template.json │ │ │ ├── k8s_master_upgrade_template.json │ │ │ ├── k8s_scale_template.json │ │ │ ├── k8s_slb_scale_template.json │ │ │ ├── k8s_slb_template.json │ │ │ ├── k8s_slb_vmss_scale_template.json │ │ │ ├── k8s_slb_vmss_template.json │ │ │ ├── k8s_template.json │ │ │ ├── k8s_template_jumpbox.json │ │ │ ├── k8s_template_kms.json │ │ │ ├── k8s_template_kms_upgrade.json │ │ │ ├── k8s_upgrade_template_jumpbox.json │ │ │ ├── k8s_vmas_scale_up_template.json │ │ │ ├── k8s_vmss_pool_upgrade_template.json │ │ │ ├── k8s_vnet_scale_template.json │ │ │ └── k8s_vnet_template.json │ ├── types.go │ ├── userassignedidentities.go │ ├── userassignedidentities_test.go │ ├── virtualmachines.go │ ├── virtualmachines_test.go │ ├── virtualmachinescalesets.go │ ├── virtualmachinescalesets_test.go │ ├── virtualnetworks.go │ ├── virtualnetworks_test.go │ ├── vmextensions.go │ └── vmextensions_test.go ├── helpers │ ├── azure_locations.go │ ├── azure_skus.go │ ├── azure_skus_const.go │ ├── azure_skus_test.go │ ├── default_helpers.go │ ├── doc.go │ ├── fast_helpers.go │ ├── filesaver.go │ ├── helpers.go │ ├── helpers_test.go │ ├── pki.go │ ├── pki_test.go │ ├── ssh.go │ ├── ssh │ │ ├── init.go │ │ ├── init_darwin.go │ │ ├── init_linux.go │ │ ├── init_windows.go │ │ ├── scp.go │ │ ├── ssh.go │ │ └── types.go │ └── to │ │ ├── to.go │ │ └── to_test.go ├── i18n │ ├── README.md │ ├── const.go │ ├── doc.go │ ├── i18n.go │ ├── i18n_test.go │ ├── resourceloader.go │ ├── translations │ │ └── en_US │ │ │ └── LC_MESSAGES │ │ │ ├── acsengine.mo │ │ │ └── acsengine.po │ └── translations_generated.go ├── kubernetes │ ├── client.go │ ├── composite_client.go │ ├── composite_client_test.go │ ├── interfaces.go │ ├── internal │ │ ├── interfaces.go │ │ └── mock_internal │ │ │ ├── client_mock.go │ │ │ └── doc.go │ ├── mock_kubernetes │ │ ├── client_mock.go │ │ └── doc.go │ └── util.go ├── operations │ ├── cordondrainvm.go │ ├── cordondrainvm_test.go │ ├── deletevm.go │ ├── doc.go │ ├── k8sapi_ops.go │ ├── k8sapi_ops_test.go │ ├── kubernetesupgrade │ │ ├── doc.go │ │ ├── upgradeagentnode.go │ │ ├── upgradecluster.go │ │ ├── upgradecluster_test.go │ │ ├── upgrademasternode.go │ │ ├── upgrader.go │ │ ├── upgrader_test.go │ │ └── upgradeworkflow.go │ ├── scaledownagentpool.go │ └── scaledownagentpool_test.go ├── telemetry │ └── telemetry.go └── versions │ ├── compare.go │ └── compare_test.go ├── releases ├── CHANGELOG-v0.78.0.md └── CHANGELOG-v0.80.1.md ├── scripts ├── build-windows-containerd.sh ├── build-windows-provisioning-scripts.sh ├── collect-logs.sh ├── collect-windows-logs.ps1 ├── copyright-header.sh ├── copyright.txt ├── cse_customcloud_cni.sh ├── devenv.ps1 ├── ensure-generated.sh ├── fault_domains_expr.py ├── get-akse.sh ├── get-kubectl.sh ├── gh-create-release-branch.sh ├── ginkgo.coverage.sh ├── k ├── update-enus-po.sh ├── update-translation.sh ├── validate-azcli.sh ├── validate-copyright-header.sh ├── validate-dependencies.sh ├── validate-go.sh ├── validate-shell.sh └── validate-windows-provisioning-scripts.sh ├── staging └── provisioning │ └── windows │ ├── cleanupnetwork.ps1 │ ├── hnsremediator.ps1 │ ├── hostsconfigagent.ps1 │ ├── kubeletstart.ps1 │ ├── kubeproxystart.ps1 │ ├── run-process.cs │ ├── windowslogscleanup.ps1 │ ├── windowsnodelabelsync.ps1 │ ├── windowsnodereset.ps1 │ └── windowssecuretls.ps1 ├── test.mk ├── test └── e2e │ ├── Makefile │ ├── azure │ ├── cli.go │ └── cli_test.go │ ├── build.sh │ ├── cleanup.sh │ ├── cluster.sh │ ├── config │ ├── config.go │ └── config_test.go │ ├── engine │ ├── cli.go │ └── template.go │ ├── go.mod │ ├── go.sum │ ├── jenkins_reown.sh │ ├── kubernetes │ ├── config.go │ ├── daemonset │ │ └── daemonset.go │ ├── deployment │ │ └── deployment.go │ ├── event │ │ └── event.go │ ├── hpa │ │ └── hpa.go │ ├── job │ │ └── job.go │ ├── kubernetes_suite_test.go │ ├── kubernetes_test.go │ ├── namespace │ │ └── namespace.go │ ├── networkpolicy │ │ └── networkpolicy.go │ ├── node │ │ └── node.go │ ├── persistentvolume │ │ └── persistentvolume.go │ ├── persistentvolumeclaims │ │ └── persistentvolumeclaims.go │ ├── pod │ │ └── pod.go │ ├── scripts │ │ ├── CIS-files-validate.sh │ │ ├── auditd-validate.sh │ │ ├── cloudprovider-config-validate.sh │ │ ├── custom-hyperkube-validate.sh │ │ ├── host-os-dns-validate.sh │ │ ├── host-os-fs.sh │ │ ├── modprobe-config-validate.sh │ │ ├── net-config-validate.sh │ │ ├── pwquality-validate.sh │ │ ├── simulate-dockerd-crash.cmd │ │ ├── sshd-config-validate.sh │ │ ├── stig-validate.sh │ │ ├── systemd-validate.sh │ │ ├── time-sync-validate.sh │ │ └── ubuntu-installed-packages-validate.sh │ ├── service │ │ └── service.go │ ├── storageclass │ │ └── storageclass.go │ ├── util │ │ └── util.go │ └── workloads │ │ ├── busybox-agent-no-egress.yaml │ │ ├── busybox-agent.yaml │ │ ├── busybox-master-no-egress.yaml │ │ ├── busybox-master.yaml │ │ ├── busybox-validate-no-egress.yaml │ │ ├── cuda-vector-add.yaml │ │ ├── dns-liveness.yaml │ │ ├── dns-loop.yaml │ │ ├── exec-liveness-always-fail.yaml │ │ ├── exec-liveness-assume-1-second-default-timeout.yaml │ │ ├── exec-liveness-timeout-always-fail.yaml │ │ ├── exec-liveness.yaml │ │ ├── hostport-test.yaml │ │ ├── httpbin.yaml │ │ ├── iis-azurefile.yaml │ │ ├── ingress-nginx-elb.yaml │ │ ├── ingress-nginx-ilb.yaml │ │ ├── large-container-daemonset.yaml │ │ ├── pod-projected-svc-token.yaml │ │ ├── pod-pvc.yaml │ │ ├── policies │ │ ├── backend-policy-allow-egress-pod-label.yaml │ │ ├── backend-policy-allow-egress-pod-namespace-label.yaml │ │ ├── backend-policy-allow-ingress-pod-label.yaml │ │ ├── backend-policy-allow-ingress-pod-namespace-label.yaml │ │ ├── backend-policy-deny-egress.yaml │ │ └── backend-policy-deny-ingress.yaml │ │ ├── pvc-azuredisk.yaml │ │ ├── pvc-azurefile.yaml │ │ ├── reboot-control-plane-node.yaml │ │ ├── sgx-device-plugin-before-k8s-1-17.yaml │ │ ├── sgx-device-plugin.yaml │ │ ├── sgx-test-with-plugin.yaml │ │ ├── sgx-test.yaml │ │ ├── storageclass-azurefile-external.yaml │ │ ├── storageclass-azurefile.yaml │ │ ├── validate-dns-linux.yaml │ │ ├── validate-dns-windows-tcp.yaml │ │ ├── validate-dns-windows.yaml │ │ ├── validate-windows-cpu-consumption.yaml │ │ ├── validate-windows-logging.yaml │ │ └── windows-hostprocess.yaml │ ├── metrics │ └── metrics.go │ ├── remote │ └── ssh.go │ ├── runner.go │ ├── runner │ ├── cli_provisioner.go │ └── ginkgo.go │ └── test_cluster_configs │ ├── availabilityset.json │ ├── base.json │ ├── byo_infra.json │ ├── cloud_controller_manager.json │ ├── cloud_controller_manager_zones.json │ ├── containerd.json │ ├── dualstack.json │ ├── everything.json │ ├── flatcar │ ├── OWNERS │ └── flatcar.json │ ├── gpu.json │ ├── kamino.json │ ├── kms.json │ ├── network │ ├── kubenet.json │ └── kubenet_containerd.json │ ├── network_policy │ ├── azure.json │ ├── calico.json │ └── calico_azure.json │ ├── no_outbound.json │ ├── no_outbound_containerd.json │ ├── private_cluster │ ├── basic_lb_1_master.json │ ├── basic_lb_3_masters.json │ ├── standard_lb_1_master.json │ └── standard_lb_3_masters.json │ ├── sgx.json │ ├── vmss_master.json │ └── windows │ ├── image_reference.json │ ├── network_plugin │ └── kubenet.json │ ├── reproductions │ └── high-cpu.json │ ├── sac │ ├── sac-1903.json │ ├── sac-1909.json │ └── sac-2004.json │ ├── shared_image_gallery.json │ └── vhd_ahub.json ├── translations ├── cs_CZ │ └── LC_MESSAGES │ │ ├── acsengine.mo │ │ └── acsengine.po ├── de_DE │ └── LC_MESSAGES │ │ ├── acsengine.mo │ │ └── acsengine.po ├── en_US │ └── LC_MESSAGES │ │ ├── acsengine.mo │ │ ├── acsengine.po │ │ ├── acsengine.po.lcg │ │ └── en-US │ │ ├── lcl │ │ └── acsengine.po.lcl │ │ └── metadata │ │ └── acsengine.po.xml ├── es_ES │ └── LC_MESSAGES │ │ ├── acsengine.mo │ │ └── acsengine.po ├── fr_FR │ └── LC_MESSAGES │ │ ├── acsengine.mo │ │ └── acsengine.po ├── hu_HU │ └── LC_MESSAGES │ │ ├── acsengine.mo │ │ └── acsengine.po ├── it_IT │ └── LC_MESSAGES │ │ ├── acsengine.mo │ │ └── acsengine.po ├── ja_JP │ └── LC_MESSAGES │ │ ├── acsengine.mo │ │ └── acsengine.po ├── ko_KR │ └── LC_MESSAGES │ │ ├── acsengine.mo │ │ └── acsengine.po ├── nl_NL │ └── LC_MESSAGES │ │ ├── acsengine.mo │ │ └── acsengine.po ├── pl_PL │ └── LC_MESSAGES │ │ ├── acsengine.mo │ │ └── acsengine.po ├── pt_BR │ └── LC_MESSAGES │ │ ├── acsengine.mo │ │ └── acsengine.po ├── pt_PT │ └── LC_MESSAGES │ │ ├── acsengine.mo │ │ └── acsengine.po ├── ru_RU │ └── LC_MESSAGES │ │ ├── acsengine.mo │ │ └── acsengine.po ├── sv_SE │ └── LC_MESSAGES │ │ ├── acsengine.mo │ │ └── acsengine.po ├── tr_TR │ └── LC_MESSAGES │ │ ├── acsengine.mo │ │ └── acsengine.po ├── zh_CN │ └── LC_MESSAGES │ │ ├── acsengine.mo │ │ └── acsengine.po └── zh_TW │ └── LC_MESSAGES │ ├── acsengine.mo │ └── acsengine.po ├── vendor ├── github.com │ ├── Azure │ │ ├── azure-pipeline-go │ │ │ ├── LICENSE │ │ │ └── pipeline │ │ │ │ ├── core.go │ │ │ │ ├── defaultlog.go │ │ │ │ ├── defaultlog_syslog.go │ │ │ │ ├── defaultlog_windows.go │ │ │ │ ├── doc.go │ │ │ │ ├── error.go │ │ │ │ ├── progress.go │ │ │ │ ├── request.go │ │ │ │ ├── response.go │ │ │ │ └── version.go │ │ ├── azure-sdk-for-go │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── profile │ │ │ │ └── p20200901 │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── internal │ │ │ │ │ └── constants.go │ │ │ │ │ └── resourcemanager │ │ │ │ │ ├── authorization │ │ │ │ │ └── armauthorization │ │ │ │ │ │ ├── autorest.md │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ ├── client_factory.go │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ ├── globaladministrator_client.go │ │ │ │ │ │ ├── models.go │ │ │ │ │ │ ├── models_serde.go │ │ │ │ │ │ ├── permissions_client.go │ │ │ │ │ │ ├── provideroperationsmetadata_client.go │ │ │ │ │ │ ├── response_types.go │ │ │ │ │ │ ├── roleassignments_client.go │ │ │ │ │ │ └── roledefinitions_client.go │ │ │ │ │ ├── compute │ │ │ │ │ └── armcompute │ │ │ │ │ │ ├── autorest.md │ │ │ │ │ │ ├── availabilitysets_client.go │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ ├── client_factory.go │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ ├── dedicatedhostgroups_client.go │ │ │ │ │ │ ├── dedicatedhosts_client.go │ │ │ │ │ │ ├── diskencryptionsets_client.go │ │ │ │ │ │ ├── disks_client.go │ │ │ │ │ │ ├── images_client.go │ │ │ │ │ │ ├── loganalytics_client.go │ │ │ │ │ │ ├── models.go │ │ │ │ │ │ ├── models_serde.go │ │ │ │ │ │ ├── operations_client.go │ │ │ │ │ │ ├── proximityplacementgroups_client.go │ │ │ │ │ │ ├── response_types.go │ │ │ │ │ │ ├── snapshots_client.go │ │ │ │ │ │ ├── sshpublickeys_client.go │ │ │ │ │ │ ├── time_rfc3339.go │ │ │ │ │ │ ├── usage_client.go │ │ │ │ │ │ ├── virtualmachineextensionimages_client.go │ │ │ │ │ │ ├── virtualmachineextensions_client.go │ │ │ │ │ │ ├── virtualmachineimages_client.go │ │ │ │ │ │ ├── virtualmachines_client.go │ │ │ │ │ │ ├── virtualmachinescalesetextensions_client.go │ │ │ │ │ │ ├── virtualmachinescalesetrollingupgrades_client.go │ │ │ │ │ │ ├── virtualmachinescalesets_client.go │ │ │ │ │ │ ├── virtualmachinescalesetvmextensions_client.go │ │ │ │ │ │ ├── virtualmachinescalesetvms_client.go │ │ │ │ │ │ └── virtualmachinesizes_client.go │ │ │ │ │ ├── network │ │ │ │ │ └── armnetwork │ │ │ │ │ │ ├── autorest.md │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ ├── client_factory.go │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ ├── defaultsecurityrules_client.go │ │ │ │ │ │ ├── inboundnatrules_client.go │ │ │ │ │ │ ├── interfaceipconfigurations_client.go │ │ │ │ │ │ ├── interfaceloadbalancers_client.go │ │ │ │ │ │ ├── interfaces_client.go │ │ │ │ │ │ ├── interfacetapconfigurations_client.go │ │ │ │ │ │ ├── loadbalancerbackendaddresspools_client.go │ │ │ │ │ │ ├── loadbalancerfrontendipconfigurations_client.go │ │ │ │ │ │ ├── loadbalancerloadbalancingrules_client.go │ │ │ │ │ │ ├── loadbalancernetworkinterfaces_client.go │ │ │ │ │ │ ├── loadbalanceroutboundrules_client.go │ │ │ │ │ │ ├── loadbalancerprobes_client.go │ │ │ │ │ │ ├── loadbalancers_client.go │ │ │ │ │ │ ├── localnetworkgateways_client.go │ │ │ │ │ │ ├── models.go │ │ │ │ │ │ ├── models_serde.go │ │ │ │ │ │ ├── operations_client.go │ │ │ │ │ │ ├── publicipaddresses_client.go │ │ │ │ │ │ ├── response_types.go │ │ │ │ │ │ ├── routes_client.go │ │ │ │ │ │ ├── routetables_client.go │ │ │ │ │ │ ├── securitygroups_client.go │ │ │ │ │ │ ├── securityrules_client.go │ │ │ │ │ │ ├── subnets_client.go │ │ │ │ │ │ ├── virtualnetworkgatewayconnections_client.go │ │ │ │ │ │ ├── virtualnetworkgateways_client.go │ │ │ │ │ │ ├── virtualnetworkpeerings_client.go │ │ │ │ │ │ └── virtualnetworks_client.go │ │ │ │ │ ├── resources │ │ │ │ │ ├── armresources │ │ │ │ │ │ ├── autorest.md │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── client_factory.go │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ ├── deploymentoperations_client.go │ │ │ │ │ │ ├── deployments_client.go │ │ │ │ │ │ ├── models.go │ │ │ │ │ │ ├── models_serde.go │ │ │ │ │ │ ├── operations_client.go │ │ │ │ │ │ ├── providers_client.go │ │ │ │ │ │ ├── resourcegroups_client.go │ │ │ │ │ │ ├── response_types.go │ │ │ │ │ │ ├── tags_client.go │ │ │ │ │ │ └── time_rfc3339.go │ │ │ │ │ └── armsubscriptions │ │ │ │ │ │ ├── autorest.md │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── client_factory.go │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ ├── models.go │ │ │ │ │ │ ├── models_serde.go │ │ │ │ │ │ ├── operations_client.go │ │ │ │ │ │ ├── response_types.go │ │ │ │ │ │ ├── subscription_client.go │ │ │ │ │ │ └── tenants_client.go │ │ │ │ │ └── storage │ │ │ │ │ └── armstorage │ │ │ │ │ ├── accounts_client.go │ │ │ │ │ ├── autorest.md │ │ │ │ │ ├── blobinventorypolicies_client.go │ │ │ │ │ ├── build.go │ │ │ │ │ ├── client_factory.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── encryptionscopes_client.go │ │ │ │ │ ├── managementpolicies_client.go │ │ │ │ │ ├── models.go │ │ │ │ │ ├── models_serde.go │ │ │ │ │ ├── objectreplicationpolicies_client.go │ │ │ │ │ ├── operations_client.go │ │ │ │ │ ├── privateendpointconnections_client.go │ │ │ │ │ ├── privatelinkresources_client.go │ │ │ │ │ ├── response_types.go │ │ │ │ │ ├── skus_client.go │ │ │ │ │ ├── time_rfc3339.go │ │ │ │ │ └── usages_client.go │ │ │ ├── profiles │ │ │ │ └── 2020-09-01 │ │ │ │ │ ├── compute │ │ │ │ │ ├── availabilitysets.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── dedicatedhostgroups.go │ │ │ │ │ ├── dedicatedhosts.go │ │ │ │ │ ├── diskencryptionsets.go │ │ │ │ │ ├── disks.go │ │ │ │ │ ├── enums.go │ │ │ │ │ ├── images.go │ │ │ │ │ ├── loganalytics.go │ │ │ │ │ ├── models.go │ │ │ │ │ ├── operations.go │ │ │ │ │ ├── proximityplacementgroups.go │ │ │ │ │ ├── snapshots.go │ │ │ │ │ ├── sshpublickeys.go │ │ │ │ │ ├── usage.go │ │ │ │ │ ├── version.go │ │ │ │ │ ├── virtualmachineextensionimages.go │ │ │ │ │ ├── virtualmachineextensions.go │ │ │ │ │ ├── virtualmachineimages.go │ │ │ │ │ ├── virtualmachines.go │ │ │ │ │ ├── virtualmachinescalesetextensions.go │ │ │ │ │ ├── virtualmachinescalesetrollingupgrades.go │ │ │ │ │ ├── virtualmachinescalesets.go │ │ │ │ │ ├── virtualmachinescalesetvmextensions.go │ │ │ │ │ ├── virtualmachinescalesetvms.go │ │ │ │ │ └── virtualmachinesizes.go │ │ │ │ │ ├── network │ │ │ │ │ └── mgmt │ │ │ │ │ │ └── network │ │ │ │ │ │ └── models.go │ │ │ │ │ ├── resources │ │ │ │ │ └── mgmt │ │ │ │ │ │ └── resources │ │ │ │ │ │ └── models.go │ │ │ │ │ └── storage │ │ │ │ │ └── mgmt │ │ │ │ │ └── storage │ │ │ │ │ └── models.go │ │ │ ├── sdk │ │ │ │ ├── azcore │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ └── resource │ │ │ │ │ │ │ │ ├── resource_identifier.go │ │ │ │ │ │ │ │ └── resource_type.go │ │ │ │ │ │ ├── policy │ │ │ │ │ │ │ └── policy.go │ │ │ │ │ │ ├── resource_identifier.go │ │ │ │ │ │ ├── resource_type.go │ │ │ │ │ │ └── runtime │ │ │ │ │ │ │ ├── pipeline.go │ │ │ │ │ │ │ ├── policy_bearer_token.go │ │ │ │ │ │ │ ├── policy_register_rp.go │ │ │ │ │ │ │ ├── policy_trace_namespace.go │ │ │ │ │ │ │ └── runtime.go │ │ │ │ │ ├── ci.yml │ │ │ │ │ ├── cloud │ │ │ │ │ │ ├── cloud.go │ │ │ │ │ │ └── doc.go │ │ │ │ │ ├── core.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── etag.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── fake.go │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ └── exported │ │ │ │ │ │ │ └── fake.go │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── exported │ │ │ │ │ │ │ ├── exported.go │ │ │ │ │ │ │ ├── pipeline.go │ │ │ │ │ │ │ ├── request.go │ │ │ │ │ │ │ └── response_error.go │ │ │ │ │ │ ├── log │ │ │ │ │ │ │ └── log.go │ │ │ │ │ │ ├── pollers │ │ │ │ │ │ │ ├── async │ │ │ │ │ │ │ │ └── async.go │ │ │ │ │ │ │ ├── body │ │ │ │ │ │ │ │ └── body.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ │ └── fake.go │ │ │ │ │ │ │ ├── loc │ │ │ │ │ │ │ │ └── loc.go │ │ │ │ │ │ │ ├── op │ │ │ │ │ │ │ │ └── op.go │ │ │ │ │ │ │ ├── poller.go │ │ │ │ │ │ │ └── util.go │ │ │ │ │ │ └── shared │ │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ │ └── shared.go │ │ │ │ │ ├── log │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── log.go │ │ │ │ │ ├── policy │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── policy.go │ │ │ │ │ ├── runtime │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── pager.go │ │ │ │ │ │ ├── pipeline.go │ │ │ │ │ │ ├── policy_api_version.go │ │ │ │ │ │ ├── policy_bearer_token.go │ │ │ │ │ │ ├── policy_body_download.go │ │ │ │ │ │ ├── policy_http_header.go │ │ │ │ │ │ ├── policy_http_trace.go │ │ │ │ │ │ ├── policy_include_response.go │ │ │ │ │ │ ├── policy_key_credential.go │ │ │ │ │ │ ├── policy_logging.go │ │ │ │ │ │ ├── policy_request_id.go │ │ │ │ │ │ ├── policy_retry.go │ │ │ │ │ │ ├── policy_sas_credential.go │ │ │ │ │ │ ├── policy_telemetry.go │ │ │ │ │ │ ├── poller.go │ │ │ │ │ │ ├── request.go │ │ │ │ │ │ ├── response.go │ │ │ │ │ │ ├── transport_default_dialer_other.go │ │ │ │ │ │ ├── transport_default_dialer_wasm.go │ │ │ │ │ │ └── transport_default_http_client.go │ │ │ │ │ ├── streaming │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── progress.go │ │ │ │ │ ├── to │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── to.go │ │ │ │ │ └── tracing │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ └── tracing.go │ │ │ │ ├── azidentity │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── MIGRATION.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── TOKEN_CACHING.MD │ │ │ │ │ ├── TROUBLESHOOTING.md │ │ │ │ │ ├── assets.json │ │ │ │ │ ├── authentication_record.go │ │ │ │ │ ├── azidentity.go │ │ │ │ │ ├── azure_cli_credential.go │ │ │ │ │ ├── azure_developer_cli_credential.go │ │ │ │ │ ├── azure_pipelines_credential.go │ │ │ │ │ ├── chained_token_credential.go │ │ │ │ │ ├── ci.yml │ │ │ │ │ ├── client_assertion_credential.go │ │ │ │ │ ├── client_certificate_credential.go │ │ │ │ │ ├── client_secret_credential.go │ │ │ │ │ ├── confidential_client.go │ │ │ │ │ ├── default_azure_credential.go │ │ │ │ │ ├── developer_credential_util.go │ │ │ │ │ ├── device_code_credential.go │ │ │ │ │ ├── environment_credential.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── go.work │ │ │ │ │ ├── go.work.sum │ │ │ │ │ ├── interactive_browser_credential.go │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── exported.go │ │ │ │ │ │ └── internal.go │ │ │ │ │ ├── logging.go │ │ │ │ │ ├── managed-identity-matrix.json │ │ │ │ │ ├── managed_identity_client.go │ │ │ │ │ ├── managed_identity_credential.go │ │ │ │ │ ├── on_behalf_of_credential.go │ │ │ │ │ ├── public_client.go │ │ │ │ │ ├── test-resources-post.ps1 │ │ │ │ │ ├── test-resources-pre.ps1 │ │ │ │ │ ├── test-resources.bicep │ │ │ │ │ ├── username_password_credential.go │ │ │ │ │ ├── version.go │ │ │ │ │ └── workload_identity.go │ │ │ │ ├── internal │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── diag │ │ │ │ │ │ ├── diag.go │ │ │ │ │ │ └── doc.go │ │ │ │ │ ├── errorinfo │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── errorinfo.go │ │ │ │ │ ├── exported │ │ │ │ │ │ └── exported.go │ │ │ │ │ ├── log │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── log.go │ │ │ │ │ ├── poller │ │ │ │ │ │ └── util.go │ │ │ │ │ ├── temporal │ │ │ │ │ │ └── resource.go │ │ │ │ │ └── uuid │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── uuid.go │ │ │ │ └── storage │ │ │ │ │ └── azblob │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── appendblob │ │ │ │ │ ├── client.go │ │ │ │ │ ├── models.go │ │ │ │ │ └── responses.go │ │ │ │ │ ├── assets.json │ │ │ │ │ ├── blob │ │ │ │ │ ├── client.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── models.go │ │ │ │ │ ├── responses.go │ │ │ │ │ ├── retry_reader.go │ │ │ │ │ └── utils.go │ │ │ │ │ ├── bloberror │ │ │ │ │ └── error_codes.go │ │ │ │ │ ├── blockblob │ │ │ │ │ ├── chunkwriting.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── models.go │ │ │ │ │ └── responses.go │ │ │ │ │ ├── ci.yml │ │ │ │ │ ├── client.go │ │ │ │ │ ├── common.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── container │ │ │ │ │ ├── batch_builder.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── models.go │ │ │ │ │ └── responses.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── internal │ │ │ │ │ ├── base │ │ │ │ │ │ └── clients.go │ │ │ │ │ ├── exported │ │ │ │ │ │ ├── access_conditions.go │ │ │ │ │ │ ├── access_policy.go │ │ │ │ │ │ ├── blob_batch.go │ │ │ │ │ │ ├── exported.go │ │ │ │ │ │ ├── log_events.go │ │ │ │ │ │ ├── set_expiry.go │ │ │ │ │ │ ├── shared_key_credential.go │ │ │ │ │ │ ├── transfer_validation_option.go │ │ │ │ │ │ ├── user_delegation_credential.go │ │ │ │ │ │ └── version.go │ │ │ │ │ ├── generated │ │ │ │ │ │ ├── appendblob_client.go │ │ │ │ │ │ ├── autorest.md │ │ │ │ │ │ ├── blob_client.go │ │ │ │ │ │ ├── block_blob_client.go │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ ├── container_client.go │ │ │ │ │ │ ├── models.go │ │ │ │ │ │ ├── pageblob_client.go │ │ │ │ │ │ ├── service_client.go │ │ │ │ │ │ ├── zz_appendblob_client.go │ │ │ │ │ │ ├── zz_blob_client.go │ │ │ │ │ │ ├── zz_blockblob_client.go │ │ │ │ │ │ ├── zz_constants.go │ │ │ │ │ │ ├── zz_container_client.go │ │ │ │ │ │ ├── zz_models.go │ │ │ │ │ │ ├── zz_models_serde.go │ │ │ │ │ │ ├── zz_options.go │ │ │ │ │ │ ├── zz_pageblob_client.go │ │ │ │ │ │ ├── zz_response_types.go │ │ │ │ │ │ ├── zz_service_client.go │ │ │ │ │ │ ├── zz_time_rfc1123.go │ │ │ │ │ │ ├── zz_time_rfc3339.go │ │ │ │ │ │ └── zz_xml_helper.go │ │ │ │ │ └── shared │ │ │ │ │ │ ├── batch_transfer.go │ │ │ │ │ │ ├── buffer_manager.go │ │ │ │ │ │ ├── bytes_writer.go │ │ │ │ │ │ ├── challenge_policy.go │ │ │ │ │ │ ├── mmf_unix.go │ │ │ │ │ │ ├── mmf_windows.go │ │ │ │ │ │ ├── section_writer.go │ │ │ │ │ │ └── shared.go │ │ │ │ │ ├── log.go │ │ │ │ │ ├── migrationguide.md │ │ │ │ │ ├── models.go │ │ │ │ │ ├── pageblob │ │ │ │ │ ├── client.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── models.go │ │ │ │ │ └── responses.go │ │ │ │ │ ├── responses.go │ │ │ │ │ ├── sas │ │ │ │ │ ├── account.go │ │ │ │ │ ├── query_params.go │ │ │ │ │ ├── service.go │ │ │ │ │ └── url_parts.go │ │ │ │ │ ├── service │ │ │ │ │ ├── batch_builder.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── models.go │ │ │ │ │ └── responses.go │ │ │ │ │ └── test-resources.json │ │ │ ├── services │ │ │ │ ├── cosmos-db │ │ │ │ │ └── mgmt │ │ │ │ │ │ └── 2015-04-08 │ │ │ │ │ │ └── documentdb │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── collection.go │ │ │ │ │ │ ├── collectionpartition.go │ │ │ │ │ │ ├── collectionpartitionregion.go │ │ │ │ │ │ ├── collectionregion.go │ │ │ │ │ │ ├── database.go │ │ │ │ │ │ ├── databaseaccountregion.go │ │ │ │ │ │ ├── databaseaccounts.go │ │ │ │ │ │ ├── enums.go │ │ │ │ │ │ ├── models.go │ │ │ │ │ │ ├── operations.go │ │ │ │ │ │ ├── partitionkeyrangeid.go │ │ │ │ │ │ ├── partitionkeyrangeidregion.go │ │ │ │ │ │ ├── percentile.go │ │ │ │ │ │ ├── percentilesourcetarget.go │ │ │ │ │ │ ├── percentiletarget.go │ │ │ │ │ │ └── version.go │ │ │ │ ├── keyvault │ │ │ │ │ └── mgmt │ │ │ │ │ │ └── 2018-02-14 │ │ │ │ │ │ └── keyvault │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── enums.go │ │ │ │ │ │ ├── models.go │ │ │ │ │ │ ├── operations.go │ │ │ │ │ │ ├── privateendpointconnections.go │ │ │ │ │ │ ├── privatelinkresources.go │ │ │ │ │ │ ├── vaults.go │ │ │ │ │ │ └── version.go │ │ │ │ ├── network │ │ │ │ │ └── mgmt │ │ │ │ │ │ └── 2018-11-01 │ │ │ │ │ │ └── network │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── applicationgateways.go │ │ │ │ │ │ ├── applicationsecuritygroups.go │ │ │ │ │ │ ├── availabledelegations.go │ │ │ │ │ │ ├── availableendpointservices.go │ │ │ │ │ │ ├── availableresourcegroupdelegations.go │ │ │ │ │ │ ├── azurefirewallfqdntags.go │ │ │ │ │ │ ├── azurefirewalls.go │ │ │ │ │ │ ├── bgpservicecommunities.go │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── connectionmonitors.go │ │ │ │ │ │ ├── ddoscustompolicies.go │ │ │ │ │ │ ├── ddosprotectionplans.go │ │ │ │ │ │ ├── defaultsecurityrules.go │ │ │ │ │ │ ├── enums.go │ │ │ │ │ │ ├── expressroutecircuitauthorizations.go │ │ │ │ │ │ ├── expressroutecircuitconnections.go │ │ │ │ │ │ ├── expressroutecircuitpeerings.go │ │ │ │ │ │ ├── expressroutecircuits.go │ │ │ │ │ │ ├── expressrouteconnections.go │ │ │ │ │ │ ├── expressroutecrossconnectionpeerings.go │ │ │ │ │ │ ├── expressroutecrossconnections.go │ │ │ │ │ │ ├── expressroutegateways.go │ │ │ │ │ │ ├── expressroutelinks.go │ │ │ │ │ │ ├── expressrouteports.go │ │ │ │ │ │ ├── expressrouteportslocations.go │ │ │ │ │ │ ├── expressrouteserviceproviders.go │ │ │ │ │ │ ├── hubvirtualnetworkconnections.go │ │ │ │ │ │ ├── inboundnatrules.go │ │ │ │ │ │ ├── interfaceendpoints.go │ │ │ │ │ │ ├── interfaceipconfigurations.go │ │ │ │ │ │ ├── interfaceloadbalancers.go │ │ │ │ │ │ ├── interfacesgroup.go │ │ │ │ │ │ ├── interfacetapconfigurations.go │ │ │ │ │ │ ├── loadbalancerbackendaddresspools.go │ │ │ │ │ │ ├── loadbalancerfrontendipconfigurations.go │ │ │ │ │ │ ├── loadbalancerloadbalancingrules.go │ │ │ │ │ │ ├── loadbalancernetworkinterfaces.go │ │ │ │ │ │ ├── loadbalanceroutboundrules.go │ │ │ │ │ │ ├── loadbalancerprobes.go │ │ │ │ │ │ ├── loadbalancers.go │ │ │ │ │ │ ├── localnetworkgateways.go │ │ │ │ │ │ ├── models.go │ │ │ │ │ │ ├── operations.go │ │ │ │ │ │ ├── p2svpngateways.go │ │ │ │ │ │ ├── p2svpnserverconfigurations.go │ │ │ │ │ │ ├── packetcaptures.go │ │ │ │ │ │ ├── profiles.go │ │ │ │ │ │ ├── publicipaddresses.go │ │ │ │ │ │ ├── publicipprefixes.go │ │ │ │ │ │ ├── routefilterrules.go │ │ │ │ │ │ ├── routefilters.go │ │ │ │ │ │ ├── routes.go │ │ │ │ │ │ ├── routetables.go │ │ │ │ │ │ ├── securitygroups.go │ │ │ │ │ │ ├── securityrules.go │ │ │ │ │ │ ├── serviceendpointpolicies.go │ │ │ │ │ │ ├── serviceendpointpolicydefinitions.go │ │ │ │ │ │ ├── subnets.go │ │ │ │ │ │ ├── usages.go │ │ │ │ │ │ ├── version.go │ │ │ │ │ │ ├── virtualhubs.go │ │ │ │ │ │ ├── virtualnetworkgatewayconnections.go │ │ │ │ │ │ ├── virtualnetworkgateways.go │ │ │ │ │ │ ├── virtualnetworkpeerings.go │ │ │ │ │ │ ├── virtualnetworks.go │ │ │ │ │ │ ├── virtualnetworktaps.go │ │ │ │ │ │ ├── virtualwans.go │ │ │ │ │ │ ├── vpnconnections.go │ │ │ │ │ │ ├── vpngateways.go │ │ │ │ │ │ ├── vpnsites.go │ │ │ │ │ │ ├── vpnsitesconfiguration.go │ │ │ │ │ │ └── watchers.go │ │ │ │ ├── preview │ │ │ │ │ ├── authorization │ │ │ │ │ │ └── mgmt │ │ │ │ │ │ │ └── 2018-09-01-preview │ │ │ │ │ │ │ └── authorization │ │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ │ ├── classicadministrators.go │ │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ │ ├── denyassignments.go │ │ │ │ │ │ │ ├── enums.go │ │ │ │ │ │ │ ├── globaladministrator.go │ │ │ │ │ │ │ ├── models.go │ │ │ │ │ │ │ ├── permissions.go │ │ │ │ │ │ │ ├── provideroperationsmetadata.go │ │ │ │ │ │ │ ├── roleassignments.go │ │ │ │ │ │ │ ├── roledefinitions.go │ │ │ │ │ │ │ └── version.go │ │ │ │ │ └── msi │ │ │ │ │ │ └── mgmt │ │ │ │ │ │ └── 2015-08-31-preview │ │ │ │ │ │ └── msi │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── models.go │ │ │ │ │ │ ├── operations.go │ │ │ │ │ │ ├── systemassignedidentities.go │ │ │ │ │ │ ├── userassignedidentities.go │ │ │ │ │ │ └── version.go │ │ │ │ ├── resources │ │ │ │ │ └── mgmt │ │ │ │ │ │ └── 2018-05-01 │ │ │ │ │ │ └── resources │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── deploymentoperations.go │ │ │ │ │ │ ├── deployments.go │ │ │ │ │ │ ├── enums.go │ │ │ │ │ │ ├── groups.go │ │ │ │ │ │ ├── models.go │ │ │ │ │ │ ├── operations.go │ │ │ │ │ │ ├── providers.go │ │ │ │ │ │ ├── resources.go │ │ │ │ │ │ ├── tags.go │ │ │ │ │ │ └── version.go │ │ │ │ └── storage │ │ │ │ │ └── mgmt │ │ │ │ │ └── 2017-10-01 │ │ │ │ │ └── storage │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── accounts.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── enums.go │ │ │ │ │ ├── models.go │ │ │ │ │ ├── operations.go │ │ │ │ │ ├── skus.go │ │ │ │ │ ├── usage.go │ │ │ │ │ └── version.go │ │ │ ├── storage │ │ │ │ ├── README.md │ │ │ │ ├── appendblob.go │ │ │ │ ├── authorization.go │ │ │ │ ├── blob.go │ │ │ │ ├── blobsasuri.go │ │ │ │ ├── blobserviceclient.go │ │ │ │ ├── blockblob.go │ │ │ │ ├── client.go │ │ │ │ ├── commonsasuri.go │ │ │ │ ├── container.go │ │ │ │ ├── copyblob.go │ │ │ │ ├── directory.go │ │ │ │ ├── entity.go │ │ │ │ ├── file.go │ │ │ │ ├── fileserviceclient.go │ │ │ │ ├── leaseblob.go │ │ │ │ ├── message.go │ │ │ │ ├── odata.go │ │ │ │ ├── pageblob.go │ │ │ │ ├── queue.go │ │ │ │ ├── queuesasuri.go │ │ │ │ ├── queueserviceclient.go │ │ │ │ ├── share.go │ │ │ │ ├── storagepolicy.go │ │ │ │ ├── storageservice.go │ │ │ │ ├── table.go │ │ │ │ ├── table_batch.go │ │ │ │ ├── tableserviceclient.go │ │ │ │ └── util.go │ │ │ └── version │ │ │ │ └── version.go │ │ ├── azure-storage-blob-go │ │ │ ├── LICENSE │ │ │ └── azblob │ │ │ │ ├── access_conditions.go │ │ │ │ ├── atomicmorph.go │ │ │ │ ├── blob.json │ │ │ │ ├── highlevel.go │ │ │ │ ├── parsing_urls.go │ │ │ │ ├── sas_service.go │ │ │ │ ├── service_codes_blob.go │ │ │ │ ├── storage_account_credential.go │ │ │ │ ├── url_append_blob.go │ │ │ │ ├── url_blob.go │ │ │ │ ├── url_block_blob.go │ │ │ │ ├── url_container.go │ │ │ │ ├── url_page_blob.go │ │ │ │ ├── url_service.go │ │ │ │ ├── user_delegation_credential.go │ │ │ │ ├── version.go │ │ │ │ ├── zc_credential_anonymous.go │ │ │ │ ├── zc_credential_shared_key.go │ │ │ │ ├── zc_credential_token.go │ │ │ │ ├── zc_mmf_unix.go │ │ │ │ ├── zc_mmf_windows.go │ │ │ │ ├── zc_pipeline.go │ │ │ │ ├── zc_policy_request_log.go │ │ │ │ ├── zc_policy_retry.go │ │ │ │ ├── zc_policy_telemetry.go │ │ │ │ ├── zc_policy_unique_request_id.go │ │ │ │ ├── zc_retry_reader.go │ │ │ │ ├── zc_sas_account.go │ │ │ │ ├── zc_sas_query_params.go │ │ │ │ ├── zc_service_codes_common.go │ │ │ │ ├── zc_storage_error.go │ │ │ │ ├── zc_util_validate.go │ │ │ │ ├── zc_uuid.go │ │ │ │ ├── zt_doc.go │ │ │ │ ├── zz_generated_append_blob.go │ │ │ │ ├── zz_generated_blob.go │ │ │ │ ├── zz_generated_block_blob.go │ │ │ │ ├── zz_generated_client.go │ │ │ │ ├── zz_generated_container.go │ │ │ │ ├── zz_generated_models.go │ │ │ │ ├── zz_generated_page_blob.go │ │ │ │ ├── zz_generated_responder_policy.go │ │ │ │ ├── zz_generated_response_error.go │ │ │ │ ├── zz_generated_service.go │ │ │ │ ├── zz_generated_validation.go │ │ │ │ ├── zz_generated_version.go │ │ │ │ └── zz_response_helpers.go │ │ └── go-autorest │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── GNUmakefile │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── autorest │ │ │ ├── LICENSE │ │ │ ├── adal │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── config.go │ │ │ │ ├── devicetoken.go │ │ │ │ ├── go_mod_tidy_hack.go │ │ │ │ ├── persist.go │ │ │ │ ├── sender.go │ │ │ │ ├── token.go │ │ │ │ ├── token_1.13.go │ │ │ │ ├── token_legacy.go │ │ │ │ └── version.go │ │ │ ├── authorization.go │ │ │ ├── authorization_sas.go │ │ │ ├── authorization_storage.go │ │ │ ├── autorest.go │ │ │ ├── azure │ │ │ │ ├── async.go │ │ │ │ ├── azure.go │ │ │ │ ├── environments.go │ │ │ │ ├── metadata_environment.go │ │ │ │ └── rp.go │ │ │ ├── client.go │ │ │ ├── date │ │ │ │ ├── LICENSE │ │ │ │ ├── date.go │ │ │ │ ├── go_mod_tidy_hack.go │ │ │ │ ├── time.go │ │ │ │ ├── timerfc1123.go │ │ │ │ ├── unixtime.go │ │ │ │ └── utility.go │ │ │ ├── error.go │ │ │ ├── go_mod_tidy_hack.go │ │ │ ├── preparer.go │ │ │ ├── responder.go │ │ │ ├── retriablerequest.go │ │ │ ├── retriablerequest_1.7.go │ │ │ ├── retriablerequest_1.8.go │ │ │ ├── sender.go │ │ │ ├── to │ │ │ │ ├── LICENSE │ │ │ │ ├── convert.go │ │ │ │ └── go_mod_tidy_hack.go │ │ │ ├── utility.go │ │ │ ├── validation │ │ │ │ ├── LICENSE │ │ │ │ ├── error.go │ │ │ │ ├── go_mod_tidy_hack.go │ │ │ │ └── validation.go │ │ │ └── version.go │ │ │ ├── azure-pipelines.yml │ │ │ ├── doc.go │ │ │ ├── logger │ │ │ ├── LICENSE │ │ │ ├── go_mod_tidy_hack.go │ │ │ └── logger.go │ │ │ └── tracing │ │ │ ├── LICENSE │ │ │ ├── go_mod_tidy_hack.go │ │ │ └── tracing.go │ ├── AzureAD │ │ └── microsoft-authentication-library-for-go │ │ │ ├── LICENSE │ │ │ └── apps │ │ │ ├── cache │ │ │ └── cache.go │ │ │ ├── confidential │ │ │ └── confidential.go │ │ │ ├── errors │ │ │ ├── error_design.md │ │ │ └── errors.go │ │ │ ├── internal │ │ │ ├── base │ │ │ │ ├── base.go │ │ │ │ └── internal │ │ │ │ │ └── storage │ │ │ │ │ ├── items.go │ │ │ │ │ ├── partitioned_storage.go │ │ │ │ │ └── storage.go │ │ │ ├── exported │ │ │ │ └── exported.go │ │ │ ├── json │ │ │ │ ├── design.md │ │ │ │ ├── json.go │ │ │ │ ├── mapslice.go │ │ │ │ ├── marshal.go │ │ │ │ ├── struct.go │ │ │ │ └── types │ │ │ │ │ └── time │ │ │ │ │ └── time.go │ │ │ ├── local │ │ │ │ └── server.go │ │ │ ├── oauth │ │ │ │ ├── oauth.go │ │ │ │ ├── ops │ │ │ │ │ ├── accesstokens │ │ │ │ │ │ ├── accesstokens.go │ │ │ │ │ │ ├── apptype_string.go │ │ │ │ │ │ └── tokens.go │ │ │ │ │ ├── authority │ │ │ │ │ │ ├── authority.go │ │ │ │ │ │ └── authorizetype_string.go │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── comm │ │ │ │ │ │ │ ├── comm.go │ │ │ │ │ │ │ └── compress.go │ │ │ │ │ │ └── grant │ │ │ │ │ │ │ └── grant.go │ │ │ │ │ ├── ops.go │ │ │ │ │ └── wstrust │ │ │ │ │ │ ├── defs │ │ │ │ │ │ ├── endpointtype_string.go │ │ │ │ │ │ ├── mex_document_definitions.go │ │ │ │ │ │ ├── saml_assertion_definitions.go │ │ │ │ │ │ ├── version_string.go │ │ │ │ │ │ ├── wstrust_endpoint.go │ │ │ │ │ │ └── wstrust_mex_document.go │ │ │ │ │ │ └── wstrust.go │ │ │ │ └── resolvers.go │ │ │ ├── options │ │ │ │ └── options.go │ │ │ ├── shared │ │ │ │ └── shared.go │ │ │ └── version │ │ │ │ └── version.go │ │ │ └── public │ │ │ └── public.go │ ├── BurntSushi │ │ └── toml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── COMPATIBLE │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── decode.go │ │ │ ├── decode_meta.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── encoding_types.go │ │ │ ├── encoding_types_1.1.go │ │ │ ├── lex.go │ │ │ ├── parse.go │ │ │ ├── session.vim │ │ │ ├── type_check.go │ │ │ └── type_fields.go │ ├── Jeffail │ │ └── gabs │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── gabs.go │ │ │ └── gabs_logo.png │ ├── blang │ │ └── semver │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── json.go │ │ │ ├── package.json │ │ │ ├── range.go │ │ │ ├── semver.go │ │ │ ├── sort.go │ │ │ └── sql.go │ ├── davecgh │ │ └── go-spew │ │ │ ├── LICENSE │ │ │ └── spew │ │ │ ├── bypass.go │ │ │ ├── bypasssafe.go │ │ │ ├── common.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── format.go │ │ │ └── spew.go │ ├── emicklei │ │ └── go-restful │ │ │ └── v3 │ │ │ ├── .gitignore │ │ │ ├── .goconvey │ │ │ ├── .travis.yml │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── Srcfile │ │ │ ├── bench_test.sh │ │ │ ├── compress.go │ │ │ ├── compressor_cache.go │ │ │ ├── compressor_pools.go │ │ │ ├── compressors.go │ │ │ ├── constants.go │ │ │ ├── container.go │ │ │ ├── cors_filter.go │ │ │ ├── coverage.sh │ │ │ ├── curly.go │ │ │ ├── curly_route.go │ │ │ ├── custom_verb.go │ │ │ ├── doc.go │ │ │ ├── entity_accessors.go │ │ │ ├── extensions.go │ │ │ ├── filter.go │ │ │ ├── filter_adapter.go │ │ │ ├── json.go │ │ │ ├── jsoniter.go │ │ │ ├── jsr311.go │ │ │ ├── log │ │ │ └── log.go │ │ │ ├── logger.go │ │ │ ├── mime.go │ │ │ ├── options_filter.go │ │ │ ├── parameter.go │ │ │ ├── path_expression.go │ │ │ ├── path_processor.go │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ ├── route.go │ │ │ ├── route_builder.go │ │ │ ├── route_reader.go │ │ │ ├── router.go │ │ │ ├── service_error.go │ │ │ ├── web_service.go │ │ │ └── web_service_container.go │ ├── fatih │ │ └── structs │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── field.go │ │ │ ├── structs.go │ │ │ └── tags.go │ ├── form3tech-oss │ │ └── jwt-go │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── MIGRATION_GUIDE.md │ │ │ ├── README.md │ │ │ ├── VERSION_HISTORY.md │ │ │ ├── claims.go │ │ │ ├── doc.go │ │ │ ├── ecdsa.go │ │ │ ├── ecdsa_utils.go │ │ │ ├── errors.go │ │ │ ├── hmac.go │ │ │ ├── map_claims.go │ │ │ ├── none.go │ │ │ ├── parser.go │ │ │ ├── rsa.go │ │ │ ├── rsa_pss.go │ │ │ ├── rsa_utils.go │ │ │ ├── signing_method.go │ │ │ └── token.go │ ├── go-logr │ │ └── logr │ │ │ ├── .golangci.yaml │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── context.go │ │ │ ├── context_noslog.go │ │ │ ├── context_slog.go │ │ │ ├── discard.go │ │ │ ├── funcr │ │ │ ├── funcr.go │ │ │ └── slogsink.go │ │ │ ├── logr.go │ │ │ ├── sloghandler.go │ │ │ ├── slogr.go │ │ │ └── slogsink.go │ ├── go-openapi │ │ ├── jsonpointer │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── pointer.go │ │ ├── jsonreference │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── internal │ │ │ │ └── normalize_url.go │ │ │ └── reference.go │ │ └── swag │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── convert.go │ │ │ ├── convert_types.go │ │ │ ├── doc.go │ │ │ ├── file.go │ │ │ ├── json.go │ │ │ ├── loading.go │ │ │ ├── name_lexem.go │ │ │ ├── net.go │ │ │ ├── path.go │ │ │ ├── post_go18.go │ │ │ ├── post_go19.go │ │ │ ├── pre_go18.go │ │ │ ├── pre_go19.go │ │ │ ├── split.go │ │ │ ├── util.go │ │ │ └── yaml.go │ ├── go-playground │ │ ├── locales │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── currency │ │ │ │ └── currency.go │ │ │ ├── logo.png │ │ │ └── rules.go │ │ └── universal-translator │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── errors.go │ │ │ ├── import_export.go │ │ │ ├── logo.png │ │ │ ├── translator.go │ │ │ └── universal_translator.go │ ├── go-task │ │ └── slim-sprig │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── Taskfile.yml │ │ │ ├── crypto.go │ │ │ ├── date.go │ │ │ ├── defaults.go │ │ │ ├── dict.go │ │ │ ├── doc.go │ │ │ ├── functions.go │ │ │ ├── list.go │ │ │ ├── network.go │ │ │ ├── numeric.go │ │ │ ├── reflect.go │ │ │ ├── regex.go │ │ │ ├── strings.go │ │ │ └── url.go │ ├── gogo │ │ └── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── proto │ │ │ ├── Makefile │ │ │ ├── clone.go │ │ │ ├── custom_gogo.go │ │ │ ├── decode.go │ │ │ ├── deprecated.go │ │ │ ├── discard.go │ │ │ ├── duration.go │ │ │ ├── duration_gogo.go │ │ │ ├── encode.go │ │ │ ├── encode_gogo.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── extensions_gogo.go │ │ │ ├── lib.go │ │ │ ├── lib_gogo.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_reflect_gogo.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── pointer_unsafe_gogo.go │ │ │ ├── properties.go │ │ │ ├── properties_gogo.go │ │ │ ├── skip_gogo.go │ │ │ ├── table_marshal.go │ │ │ ├── table_marshal_gogo.go │ │ │ ├── table_merge.go │ │ │ ├── table_unmarshal.go │ │ │ ├── table_unmarshal_gogo.go │ │ │ ├── text.go │ │ │ ├── text_gogo.go │ │ │ ├── text_parser.go │ │ │ ├── timestamp.go │ │ │ ├── timestamp_gogo.go │ │ │ ├── wrappers.go │ │ │ └── wrappers_gogo.go │ │ │ └── sortkeys │ │ │ └── sortkeys.go │ ├── golang-jwt │ │ └── jwt │ │ │ └── v5 │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── MIGRATION_GUIDE.md │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── VERSION_HISTORY.md │ │ │ ├── claims.go │ │ │ ├── doc.go │ │ │ ├── ecdsa.go │ │ │ ├── ecdsa_utils.go │ │ │ ├── ed25519.go │ │ │ ├── ed25519_utils.go │ │ │ ├── errors.go │ │ │ ├── errors_go1_20.go │ │ │ ├── errors_go_other.go │ │ │ ├── hmac.go │ │ │ ├── map_claims.go │ │ │ ├── none.go │ │ │ ├── parser.go │ │ │ ├── parser_option.go │ │ │ ├── registered_claims.go │ │ │ ├── rsa.go │ │ │ ├── rsa_pss.go │ │ │ ├── rsa_utils.go │ │ │ ├── signing_method.go │ │ │ ├── staticcheck.conf │ │ │ ├── token.go │ │ │ ├── token_option.go │ │ │ ├── types.go │ │ │ └── validator.go │ ├── golang │ │ ├── mock │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ └── gomock │ │ │ │ ├── call.go │ │ │ │ ├── callset.go │ │ │ │ ├── controller.go │ │ │ │ └── matchers.go │ │ └── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── proto │ │ │ ├── buffer.go │ │ │ ├── defaults.go │ │ │ ├── deprecated.go │ │ │ ├── discard.go │ │ │ ├── extensions.go │ │ │ ├── properties.go │ │ │ ├── proto.go │ │ │ ├── registry.go │ │ │ ├── text_decode.go │ │ │ ├── text_encode.go │ │ │ ├── wire.go │ │ │ └── wrappers.go │ │ │ └── ptypes │ │ │ ├── any.go │ │ │ ├── any │ │ │ └── any.pb.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── duration │ │ │ └── duration.pb.go │ │ │ ├── timestamp.go │ │ │ └── timestamp │ │ │ └── timestamp.pb.go │ ├── google │ │ ├── gnostic │ │ │ ├── LICENSE │ │ │ ├── compiler │ │ │ │ ├── README.md │ │ │ │ ├── context.go │ │ │ │ ├── error.go │ │ │ │ ├── extensions.go │ │ │ │ ├── helpers.go │ │ │ │ ├── main.go │ │ │ │ └── reader.go │ │ │ ├── extensions │ │ │ │ ├── README.md │ │ │ │ ├── extension.pb.go │ │ │ │ ├── extension.proto │ │ │ │ └── extensions.go │ │ │ ├── jsonschema │ │ │ │ ├── README.md │ │ │ │ ├── base.go │ │ │ │ ├── display.go │ │ │ │ ├── models.go │ │ │ │ ├── operations.go │ │ │ │ ├── reader.go │ │ │ │ ├── schema.json │ │ │ │ └── writer.go │ │ │ ├── openapiv2 │ │ │ │ ├── OpenAPIv2.go │ │ │ │ ├── OpenAPIv2.pb.go │ │ │ │ ├── OpenAPIv2.proto │ │ │ │ ├── README.md │ │ │ │ ├── document.go │ │ │ │ └── openapi-2.0.json │ │ │ └── openapiv3 │ │ │ │ ├── OpenAPIv3.go │ │ │ │ ├── OpenAPIv3.pb.go │ │ │ │ ├── OpenAPIv3.proto │ │ │ │ ├── README.md │ │ │ │ ├── document.go │ │ │ │ ├── openapi-3.0.json │ │ │ │ └── openapi-3.1.json │ │ ├── go-cmp │ │ │ ├── LICENSE │ │ │ └── cmp │ │ │ │ ├── compare.go │ │ │ │ ├── export.go │ │ │ │ ├── internal │ │ │ │ ├── diff │ │ │ │ │ ├── debug_disable.go │ │ │ │ │ ├── debug_enable.go │ │ │ │ │ └── diff.go │ │ │ │ ├── flags │ │ │ │ │ └── flags.go │ │ │ │ ├── function │ │ │ │ │ └── func.go │ │ │ │ └── value │ │ │ │ │ ├── name.go │ │ │ │ │ ├── pointer.go │ │ │ │ │ └── sort.go │ │ │ │ ├── options.go │ │ │ │ ├── path.go │ │ │ │ ├── report.go │ │ │ │ ├── report_compare.go │ │ │ │ ├── report_references.go │ │ │ │ ├── report_reflect.go │ │ │ │ ├── report_slices.go │ │ │ │ ├── report_text.go │ │ │ │ └── report_value.go │ │ ├── gofuzz │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ └── fuzz.go │ │ ├── pprof │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ └── profile │ │ │ │ ├── encode.go │ │ │ │ ├── filter.go │ │ │ │ ├── index.go │ │ │ │ ├── legacy_java_profile.go │ │ │ │ ├── legacy_profile.go │ │ │ │ ├── merge.go │ │ │ │ ├── profile.go │ │ │ │ ├── proto.go │ │ │ │ └── prune.go │ │ └── uuid │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dce.go │ │ │ ├── doc.go │ │ │ ├── hash.go │ │ │ ├── marshal.go │ │ │ ├── node.go │ │ │ ├── node_js.go │ │ │ ├── node_net.go │ │ │ ├── null.go │ │ │ ├── sql.go │ │ │ ├── time.go │ │ │ ├── util.go │ │ │ ├── uuid.go │ │ │ ├── version1.go │ │ │ ├── version4.go │ │ │ ├── version6.go │ │ │ └── version7.go │ ├── imdario │ │ └── mergo │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── map.go │ │ │ ├── merge.go │ │ │ └── mergo.go │ ├── inconshreveable │ │ └── mousetrap │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── trap_others.go │ │ │ ├── trap_windows.go │ │ │ └── trap_windows_1.4.go │ ├── jarcoal │ │ └── httpmock │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── env.go │ │ │ ├── response.go │ │ │ └── transport.go │ ├── josharian │ │ └── intern │ │ │ ├── README.md │ │ │ ├── intern.go │ │ │ └── license.md │ ├── json-iterator │ │ └── go │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── adapter.go │ │ │ ├── any.go │ │ │ ├── any_array.go │ │ │ ├── any_bool.go │ │ │ ├── any_float.go │ │ │ ├── any_int32.go │ │ │ ├── any_int64.go │ │ │ ├── any_invalid.go │ │ │ ├── any_nil.go │ │ │ ├── any_number.go │ │ │ ├── any_object.go │ │ │ ├── any_str.go │ │ │ ├── any_uint32.go │ │ │ ├── any_uint64.go │ │ │ ├── build.sh │ │ │ ├── config.go │ │ │ ├── fuzzy_mode_convert_table.md │ │ │ ├── iter.go │ │ │ ├── iter_array.go │ │ │ ├── iter_float.go │ │ │ ├── iter_int.go │ │ │ ├── iter_object.go │ │ │ ├── iter_skip.go │ │ │ ├── iter_skip_sloppy.go │ │ │ ├── iter_skip_strict.go │ │ │ ├── iter_str.go │ │ │ ├── jsoniter.go │ │ │ ├── pool.go │ │ │ ├── reflect.go │ │ │ ├── reflect_array.go │ │ │ ├── reflect_dynamic.go │ │ │ ├── reflect_extension.go │ │ │ ├── reflect_json_number.go │ │ │ ├── reflect_json_raw_message.go │ │ │ ├── reflect_map.go │ │ │ ├── reflect_marshaler.go │ │ │ ├── reflect_native.go │ │ │ ├── reflect_optional.go │ │ │ ├── reflect_slice.go │ │ │ ├── reflect_struct_decoder.go │ │ │ ├── reflect_struct_encoder.go │ │ │ ├── stream.go │ │ │ ├── stream_float.go │ │ │ ├── stream_int.go │ │ │ ├── stream_str.go │ │ │ └── test.sh │ ├── kylelemons │ │ └── godebug │ │ │ ├── LICENSE │ │ │ ├── diff │ │ │ └── diff.go │ │ │ └── pretty │ │ │ ├── .gitignore │ │ │ ├── doc.go │ │ │ ├── public.go │ │ │ ├── reflect.go │ │ │ └── structure.go │ ├── leodido │ │ └── go-urn │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── machine.go │ │ │ ├── machine.go.rl │ │ │ ├── makefile │ │ │ └── urn.go │ ├── leonelquinteros │ │ └── gotext │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── gotext.go │ │ │ ├── helper.go │ │ │ ├── locale.go │ │ │ ├── mo.go │ │ │ ├── plurals │ │ │ ├── compiler.go │ │ │ ├── expression.go │ │ │ ├── math.go │ │ │ └── tests.go │ │ │ ├── po.go │ │ │ ├── translation.go │ │ │ └── translator.go │ ├── magefile │ │ └── mage │ │ │ ├── LICENSE │ │ │ ├── mg │ │ │ ├── color.go │ │ │ ├── color_string.go │ │ │ ├── deps.go │ │ │ ├── errors.go │ │ │ └── runtime.go │ │ │ └── sh │ │ │ ├── cmd.go │ │ │ └── helpers.go │ ├── mailru │ │ └── easyjson │ │ │ ├── LICENSE │ │ │ ├── buffer │ │ │ └── pool.go │ │ │ ├── jlexer │ │ │ ├── bytestostr.go │ │ │ ├── bytestostr_nounsafe.go │ │ │ ├── error.go │ │ │ └── lexer.go │ │ │ └── jwriter │ │ │ └── writer.go │ ├── mattn │ │ ├── go-colorable │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── colorable_appengine.go │ │ │ ├── colorable_others.go │ │ │ ├── colorable_windows.go │ │ │ └── noncolorable.go │ │ ├── go-ieproxy │ │ │ ├── .gitignore │ │ │ ├── GetProxyFunc.go │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ieproxy.go │ │ │ ├── ieproxy_unix.go │ │ │ ├── ieproxy_windows.go │ │ │ ├── kernel32_data_windows.go │ │ │ ├── pac_unix.go │ │ │ ├── pac_windows.go │ │ │ ├── proxyMiddleman_unix.go │ │ │ ├── proxyMiddleman_windows.go │ │ │ ├── utils.go │ │ │ └── winhttp_data_windows.go │ │ └── go-isatty │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── go.test.sh │ │ │ ├── isatty_bsd.go │ │ │ ├── isatty_others.go │ │ │ ├── isatty_plan9.go │ │ │ ├── isatty_solaris.go │ │ │ ├── isatty_tcgets.go │ │ │ └── isatty_windows.go │ ├── mgutz │ │ └── ansi │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ansi.go │ │ │ ├── doc.go │ │ │ └── print.go │ ├── modern-go │ │ ├── concurrent │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── executor.go │ │ │ ├── go_above_19.go │ │ │ ├── go_below_19.go │ │ │ ├── log.go │ │ │ ├── test.sh │ │ │ └── unbounded_executor.go │ │ └── reflect2 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go_above_118.go │ │ │ ├── go_above_19.go │ │ │ ├── go_below_118.go │ │ │ ├── reflect2.go │ │ │ ├── reflect2_amd64.s │ │ │ ├── reflect2_kind.go │ │ │ ├── relfect2_386.s │ │ │ ├── relfect2_amd64p32.s │ │ │ ├── relfect2_arm.s │ │ │ ├── relfect2_arm64.s │ │ │ ├── relfect2_mips64x.s │ │ │ ├── relfect2_mipsx.s │ │ │ ├── relfect2_ppc64x.s │ │ │ ├── relfect2_s390x.s │ │ │ ├── safe_field.go │ │ │ ├── safe_map.go │ │ │ ├── safe_slice.go │ │ │ ├── safe_struct.go │ │ │ ├── safe_type.go │ │ │ ├── type_map.go │ │ │ ├── unsafe_array.go │ │ │ ├── unsafe_eface.go │ │ │ ├── unsafe_field.go │ │ │ ├── unsafe_iface.go │ │ │ ├── unsafe_link.go │ │ │ ├── unsafe_map.go │ │ │ ├── unsafe_ptr.go │ │ │ ├── unsafe_slice.go │ │ │ ├── unsafe_struct.go │ │ │ └── unsafe_type.go │ ├── munnerz │ │ └── goautoneg │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ └── autoneg.go │ ├── onsi │ │ ├── ginkgo │ │ │ └── v2 │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── RELEASING.md │ │ │ │ ├── config │ │ │ │ └── deprecated.go │ │ │ │ ├── core_dsl.go │ │ │ │ ├── decorator_dsl.go │ │ │ │ ├── deprecated_dsl.go │ │ │ │ ├── formatter │ │ │ │ ├── colorable_others.go │ │ │ │ ├── colorable_windows.go │ │ │ │ └── formatter.go │ │ │ │ ├── ginkgo │ │ │ │ ├── build │ │ │ │ │ └── build_command.go │ │ │ │ ├── command │ │ │ │ │ ├── abort.go │ │ │ │ │ ├── command.go │ │ │ │ │ └── program.go │ │ │ │ ├── generators │ │ │ │ │ ├── boostrap_templates.go │ │ │ │ │ ├── bootstrap_command.go │ │ │ │ │ ├── generate_command.go │ │ │ │ │ ├── generate_templates.go │ │ │ │ │ └── generators_common.go │ │ │ │ ├── internal │ │ │ │ │ ├── compile.go │ │ │ │ │ ├── gocovmerge.go │ │ │ │ │ ├── profiles_and_reports.go │ │ │ │ │ ├── run.go │ │ │ │ │ ├── test_suite.go │ │ │ │ │ ├── utils.go │ │ │ │ │ └── verify_version.go │ │ │ │ ├── labels │ │ │ │ │ └── labels_command.go │ │ │ │ ├── main.go │ │ │ │ ├── outline │ │ │ │ │ ├── ginkgo.go │ │ │ │ │ ├── import.go │ │ │ │ │ ├── outline.go │ │ │ │ │ └── outline_command.go │ │ │ │ ├── run │ │ │ │ │ └── run_command.go │ │ │ │ ├── unfocus │ │ │ │ │ └── unfocus_command.go │ │ │ │ └── watch │ │ │ │ │ ├── delta.go │ │ │ │ │ ├── delta_tracker.go │ │ │ │ │ ├── dependencies.go │ │ │ │ │ ├── package_hash.go │ │ │ │ │ ├── package_hashes.go │ │ │ │ │ ├── suite.go │ │ │ │ │ └── watch_command.go │ │ │ │ ├── ginkgo_cli_dependencies.go │ │ │ │ ├── ginkgo_t_dsl.go │ │ │ │ ├── internal │ │ │ │ ├── counter.go │ │ │ │ ├── failer.go │ │ │ │ ├── focus.go │ │ │ │ ├── global │ │ │ │ │ └── init.go │ │ │ │ ├── group.go │ │ │ │ ├── interrupt_handler │ │ │ │ │ ├── interrupt_handler.go │ │ │ │ │ ├── sigquit_swallower_unix.go │ │ │ │ │ └── sigquit_swallower_windows.go │ │ │ │ ├── node.go │ │ │ │ ├── ordering.go │ │ │ │ ├── output_interceptor.go │ │ │ │ ├── output_interceptor_unix.go │ │ │ │ ├── output_interceptor_wasm.go │ │ │ │ ├── output_interceptor_win.go │ │ │ │ ├── parallel_support │ │ │ │ │ ├── client_server.go │ │ │ │ │ ├── http_client.go │ │ │ │ │ ├── http_server.go │ │ │ │ │ ├── rpc_client.go │ │ │ │ │ ├── rpc_server.go │ │ │ │ │ └── server_handler.go │ │ │ │ ├── progress_report.go │ │ │ │ ├── progress_report_bsd.go │ │ │ │ ├── progress_report_unix.go │ │ │ │ ├── progress_report_wasm.go │ │ │ │ ├── progress_report_win.go │ │ │ │ ├── progress_reporter_manager.go │ │ │ │ ├── report_entry.go │ │ │ │ ├── spec.go │ │ │ │ ├── spec_context.go │ │ │ │ ├── suite.go │ │ │ │ ├── testingtproxy │ │ │ │ │ └── testing_t_proxy.go │ │ │ │ ├── tree.go │ │ │ │ └── writer.go │ │ │ │ ├── reporters │ │ │ │ ├── default_reporter.go │ │ │ │ ├── deprecated_reporter.go │ │ │ │ ├── json_report.go │ │ │ │ ├── junit_report.go │ │ │ │ ├── reporter.go │ │ │ │ └── teamcity_report.go │ │ │ │ ├── reporting_dsl.go │ │ │ │ ├── table_dsl.go │ │ │ │ └── types │ │ │ │ ├── code_location.go │ │ │ │ ├── config.go │ │ │ │ ├── deprecated_types.go │ │ │ │ ├── deprecation_support.go │ │ │ │ ├── enum_support.go │ │ │ │ ├── errors.go │ │ │ │ ├── file_filter.go │ │ │ │ ├── flags.go │ │ │ │ ├── label_filter.go │ │ │ │ ├── report_entry.go │ │ │ │ ├── types.go │ │ │ │ └── version.go │ │ └── gomega │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── RELEASING.md │ │ │ ├── format │ │ │ └── format.go │ │ │ ├── gomega_dsl.go │ │ │ ├── internal │ │ │ ├── assertion.go │ │ │ ├── async_assertion.go │ │ │ ├── duration_bundle.go │ │ │ ├── gomega.go │ │ │ ├── gutil │ │ │ │ ├── post_ioutil.go │ │ │ │ └── using_ioutil.go │ │ │ ├── polling_signal_error.go │ │ │ └── vetoptdesc.go │ │ │ ├── matchers.go │ │ │ ├── matchers │ │ │ ├── and.go │ │ │ ├── assignable_to_type_of_matcher.go │ │ │ ├── attributes_slice.go │ │ │ ├── be_a_directory.go │ │ │ ├── be_a_regular_file.go │ │ │ ├── be_an_existing_file.go │ │ │ ├── be_closed_matcher.go │ │ │ ├── be_comparable_to_matcher.go │ │ │ ├── be_element_of_matcher.go │ │ │ ├── be_empty_matcher.go │ │ │ ├── be_equivalent_to_matcher.go │ │ │ ├── be_false_matcher.go │ │ │ ├── be_identical_to.go │ │ │ ├── be_key_of_matcher.go │ │ │ ├── be_nil_matcher.go │ │ │ ├── be_numerically_matcher.go │ │ │ ├── be_sent_matcher.go │ │ │ ├── be_temporally_matcher.go │ │ │ ├── be_true_matcher.go │ │ │ ├── be_zero_matcher.go │ │ │ ├── consist_of.go │ │ │ ├── contain_element_matcher.go │ │ │ ├── contain_elements_matcher.go │ │ │ ├── contain_substring_matcher.go │ │ │ ├── equal_matcher.go │ │ │ ├── have_cap_matcher.go │ │ │ ├── have_each_matcher.go │ │ │ ├── have_exact_elements.go │ │ │ ├── have_existing_field_matcher.go │ │ │ ├── have_field.go │ │ │ ├── have_http_body_matcher.go │ │ │ ├── have_http_header_with_value_matcher.go │ │ │ ├── have_http_status_matcher.go │ │ │ ├── have_key_matcher.go │ │ │ ├── have_key_with_value_matcher.go │ │ │ ├── have_len_matcher.go │ │ │ ├── have_occurred_matcher.go │ │ │ ├── have_prefix_matcher.go │ │ │ ├── have_suffix_matcher.go │ │ │ ├── have_value.go │ │ │ ├── match_error_matcher.go │ │ │ ├── match_json_matcher.go │ │ │ ├── match_regexp_matcher.go │ │ │ ├── match_xml_matcher.go │ │ │ ├── match_yaml_matcher.go │ │ │ ├── not.go │ │ │ ├── or.go │ │ │ ├── panic_matcher.go │ │ │ ├── receive_matcher.go │ │ │ ├── satisfy_matcher.go │ │ │ ├── semi_structured_data_support.go │ │ │ ├── succeed_matcher.go │ │ │ ├── support │ │ │ │ └── goraph │ │ │ │ │ ├── bipartitegraph │ │ │ │ │ ├── bipartitegraph.go │ │ │ │ │ └── bipartitegraphmatching.go │ │ │ │ │ ├── edge │ │ │ │ │ └── edge.go │ │ │ │ │ ├── node │ │ │ │ │ └── node.go │ │ │ │ │ └── util │ │ │ │ │ └── util.go │ │ │ ├── type_support.go │ │ │ └── with_transform.go │ │ │ └── types │ │ │ └── types.go │ ├── pkg │ │ ├── browser │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── browser.go │ │ │ ├── browser_darwin.go │ │ │ ├── browser_freebsd.go │ │ │ ├── browser_linux.go │ │ │ ├── browser_netbsd.go │ │ │ ├── browser_openbsd.go │ │ │ ├── browser_unsupported.go │ │ │ └── browser_windows.go │ │ └── errors │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── errors.go │ │ │ ├── go113.go │ │ │ └── stack.go │ ├── satori │ │ └── go.uuid │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── codec.go │ │ │ ├── generator.go │ │ │ ├── sql.go │ │ │ └── uuid.go │ ├── sirupsen │ │ └── logrus │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── alt_exit.go │ │ │ ├── appveyor.yml │ │ │ ├── buffer_pool.go │ │ │ ├── doc.go │ │ │ ├── entry.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── hooks.go │ │ │ ├── hooks │ │ │ └── test │ │ │ │ └── test.go │ │ │ ├── json_formatter.go │ │ │ ├── logger.go │ │ │ ├── logrus.go │ │ │ ├── magefile.go │ │ │ ├── terminal_check_appengine.go │ │ │ ├── terminal_check_bsd.go │ │ │ ├── terminal_check_js.go │ │ │ ├── terminal_check_no_terminal.go │ │ │ ├── terminal_check_notappengine.go │ │ │ ├── terminal_check_solaris.go │ │ │ ├── terminal_check_unix.go │ │ │ ├── terminal_check_windows.go │ │ │ ├── text_formatter.go │ │ │ └── writer.go │ ├── spf13 │ │ ├── cobra │ │ │ ├── .gitignore │ │ │ ├── .mailmap │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── args.go │ │ │ ├── bash_completions.go │ │ │ ├── bash_completions.md │ │ │ ├── cobra.go │ │ │ ├── command.go │ │ │ ├── command_notwin.go │ │ │ ├── command_win.go │ │ │ └── zsh_completions.go │ │ └── pflag │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bool.go │ │ │ ├── bool_slice.go │ │ │ ├── bytes.go │ │ │ ├── count.go │ │ │ ├── duration.go │ │ │ ├── duration_slice.go │ │ │ ├── flag.go │ │ │ ├── float32.go │ │ │ ├── float32_slice.go │ │ │ ├── float64.go │ │ │ ├── float64_slice.go │ │ │ ├── golangflag.go │ │ │ ├── int.go │ │ │ ├── int16.go │ │ │ ├── int32.go │ │ │ ├── int32_slice.go │ │ │ ├── int64.go │ │ │ ├── int64_slice.go │ │ │ ├── int8.go │ │ │ ├── int_slice.go │ │ │ ├── ip.go │ │ │ ├── ip_slice.go │ │ │ ├── ipmask.go │ │ │ ├── ipnet.go │ │ │ ├── string.go │ │ │ ├── string_array.go │ │ │ ├── string_slice.go │ │ │ ├── string_to_int.go │ │ │ ├── string_to_int64.go │ │ │ ├── string_to_string.go │ │ │ ├── uint.go │ │ │ ├── uint16.go │ │ │ ├── uint32.go │ │ │ ├── uint64.go │ │ │ ├── uint8.go │ │ │ └── uint_slice.go │ └── x-cray │ │ └── logrus-prefixed-formatter │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ └── formatter.go ├── golang.org │ └── x │ │ ├── crypto │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── blowfish │ │ │ ├── block.go │ │ │ ├── cipher.go │ │ │ └── const.go │ │ ├── chacha20 │ │ │ ├── chacha_arm64.go │ │ │ ├── chacha_arm64.s │ │ │ ├── chacha_generic.go │ │ │ ├── chacha_noasm.go │ │ │ ├── chacha_ppc64x.go │ │ │ ├── chacha_ppc64x.s │ │ │ ├── chacha_s390x.go │ │ │ ├── chacha_s390x.s │ │ │ └── xor.go │ │ ├── curve25519 │ │ │ └── curve25519.go │ │ ├── internal │ │ │ ├── alias │ │ │ │ ├── alias.go │ │ │ │ └── alias_purego.go │ │ │ └── poly1305 │ │ │ │ ├── mac_noasm.go │ │ │ │ ├── poly1305.go │ │ │ │ ├── sum_amd64.go │ │ │ │ ├── sum_amd64.s │ │ │ │ ├── sum_generic.go │ │ │ │ ├── sum_ppc64x.go │ │ │ │ ├── sum_ppc64x.s │ │ │ │ ├── sum_s390x.go │ │ │ │ └── sum_s390x.s │ │ ├── pkcs12 │ │ │ ├── bmp-string.go │ │ │ ├── crypto.go │ │ │ ├── errors.go │ │ │ ├── internal │ │ │ │ └── rc2 │ │ │ │ │ └── rc2.go │ │ │ ├── mac.go │ │ │ ├── pbkdf.go │ │ │ ├── pkcs12.go │ │ │ └── safebags.go │ │ └── ssh │ │ │ ├── buffer.go │ │ │ ├── certs.go │ │ │ ├── channel.go │ │ │ ├── cipher.go │ │ │ ├── client.go │ │ │ ├── client_auth.go │ │ │ ├── common.go │ │ │ ├── connection.go │ │ │ ├── doc.go │ │ │ ├── handshake.go │ │ │ ├── internal │ │ │ └── bcrypt_pbkdf │ │ │ │ └── bcrypt_pbkdf.go │ │ │ ├── kex.go │ │ │ ├── keys.go │ │ │ ├── knownhosts │ │ │ └── knownhosts.go │ │ │ ├── mac.go │ │ │ ├── messages.go │ │ │ ├── mux.go │ │ │ ├── server.go │ │ │ ├── session.go │ │ │ ├── ssh_gss.go │ │ │ ├── streamlocal.go │ │ │ ├── tcpip.go │ │ │ ├── terminal │ │ │ └── terminal.go │ │ │ └── transport.go │ │ ├── net │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── context │ │ │ └── context.go │ │ ├── html │ │ │ ├── atom │ │ │ │ ├── atom.go │ │ │ │ └── table.go │ │ │ ├── charset │ │ │ │ └── charset.go │ │ │ ├── const.go │ │ │ ├── doc.go │ │ │ ├── doctype.go │ │ │ ├── entity.go │ │ │ ├── escape.go │ │ │ ├── foreign.go │ │ │ ├── iter.go │ │ │ ├── node.go │ │ │ ├── parse.go │ │ │ ├── render.go │ │ │ └── token.go │ │ ├── http │ │ │ ├── httpguts │ │ │ │ ├── guts.go │ │ │ │ └── httplex.go │ │ │ └── httpproxy │ │ │ │ └── proxy.go │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── ascii.go │ │ │ ├── ciphers.go │ │ │ ├── client_conn_pool.go │ │ │ ├── config.go │ │ │ ├── config_go124.go │ │ │ ├── config_pre_go124.go │ │ │ ├── databuffer.go │ │ │ ├── errors.go │ │ │ ├── flow.go │ │ │ ├── frame.go │ │ │ ├── gotrack.go │ │ │ ├── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── hpack.go │ │ │ │ ├── huffman.go │ │ │ │ ├── static_table.go │ │ │ │ └── tables.go │ │ │ ├── http2.go │ │ │ ├── pipe.go │ │ │ ├── server.go │ │ │ ├── timer.go │ │ │ ├── transport.go │ │ │ ├── unencrypted.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ ├── writesched_priority.go │ │ │ ├── writesched_random.go │ │ │ └── writesched_roundrobin.go │ │ ├── idna │ │ │ ├── go118.go │ │ │ ├── idna10.0.0.go │ │ │ ├── idna9.0.0.go │ │ │ ├── pre_go118.go │ │ │ ├── punycode.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── trie.go │ │ │ ├── trie12.0.0.go │ │ │ ├── trie13.0.0.go │ │ │ └── trieval.go │ │ └── internal │ │ │ └── httpcommon │ │ │ ├── ascii.go │ │ │ ├── headermap.go │ │ │ └── request.go │ │ ├── oauth2 │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── deviceauth.go │ │ ├── internal │ │ │ ├── doc.go │ │ │ ├── oauth2.go │ │ │ ├── token.go │ │ │ └── transport.go │ │ ├── oauth2.go │ │ ├── pkce.go │ │ ├── token.go │ │ └── transport.go │ │ ├── sync │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── errgroup │ │ │ └── errgroup.go │ │ ├── sys │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── cpu │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── asm_darwin_x86_gc.s │ │ │ ├── byteorder.go │ │ │ ├── cpu.go │ │ │ ├── cpu_aix.go │ │ │ ├── cpu_arm.go │ │ │ ├── cpu_arm64.go │ │ │ ├── cpu_arm64.s │ │ │ ├── cpu_darwin_x86.go │ │ │ ├── cpu_gc_arm64.go │ │ │ ├── cpu_gc_s390x.go │ │ │ ├── cpu_gc_x86.go │ │ │ ├── cpu_gc_x86.s │ │ │ ├── cpu_gccgo_arm64.go │ │ │ ├── cpu_gccgo_s390x.go │ │ │ ├── cpu_gccgo_x86.c │ │ │ ├── cpu_gccgo_x86.go │ │ │ ├── cpu_linux.go │ │ │ ├── cpu_linux_arm.go │ │ │ ├── cpu_linux_arm64.go │ │ │ ├── cpu_linux_mips64x.go │ │ │ ├── cpu_linux_noinit.go │ │ │ ├── cpu_linux_ppc64x.go │ │ │ ├── cpu_linux_riscv64.go │ │ │ ├── cpu_linux_s390x.go │ │ │ ├── cpu_loong64.go │ │ │ ├── cpu_mips64x.go │ │ │ ├── cpu_mipsx.go │ │ │ ├── cpu_netbsd_arm64.go │ │ │ ├── cpu_openbsd_arm64.go │ │ │ ├── cpu_openbsd_arm64.s │ │ │ ├── cpu_other_arm.go │ │ │ ├── cpu_other_arm64.go │ │ │ ├── cpu_other_mips64x.go │ │ │ ├── cpu_other_ppc64x.go │ │ │ ├── cpu_other_riscv64.go │ │ │ ├── cpu_other_x86.go │ │ │ ├── cpu_ppc64x.go │ │ │ ├── cpu_riscv64.go │ │ │ ├── cpu_s390x.go │ │ │ ├── cpu_s390x.s │ │ │ ├── cpu_wasm.go │ │ │ ├── cpu_x86.go │ │ │ ├── cpu_zos.go │ │ │ ├── cpu_zos_s390x.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── hwcap_linux.go │ │ │ ├── parse.go │ │ │ ├── proc_cpuinfo_linux.go │ │ │ ├── runtime_auxv.go │ │ │ ├── runtime_auxv_go121.go │ │ │ ├── syscall_aix_gccgo.go │ │ │ ├── syscall_aix_ppc64_gc.go │ │ │ └── syscall_darwin_x86_gc.go │ │ ├── plan9 │ │ │ ├── asm.s │ │ │ ├── asm_plan9_386.s │ │ │ ├── asm_plan9_amd64.s │ │ │ ├── asm_plan9_arm.s │ │ │ ├── const_plan9.go │ │ │ ├── dir_plan9.go │ │ │ ├── env_plan9.go │ │ │ ├── errors_plan9.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mksysnum_plan9.sh │ │ │ ├── pwd_go15_plan9.go │ │ │ ├── pwd_plan9.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_plan9.go │ │ │ ├── zsyscall_plan9_386.go │ │ │ ├── zsyscall_plan9_amd64.go │ │ │ ├── zsyscall_plan9_arm.go │ │ │ └── zsysnum_plan9.go │ │ ├── unix │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── affinity_linux.go │ │ │ ├── aliases.go │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── asm_bsd_386.s │ │ │ ├── asm_bsd_amd64.s │ │ │ ├── asm_bsd_arm.s │ │ │ ├── asm_bsd_arm64.s │ │ │ ├── asm_bsd_ppc64.s │ │ │ ├── asm_bsd_riscv64.s │ │ │ ├── asm_linux_386.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_arm64.s │ │ │ ├── asm_linux_loong64.s │ │ │ ├── asm_linux_mips64x.s │ │ │ ├── asm_linux_mipsx.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_linux_riscv64.s │ │ │ ├── asm_linux_s390x.s │ │ │ ├── asm_openbsd_mips64.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── asm_zos_s390x.s │ │ │ ├── auxv.go │ │ │ ├── auxv_unsupported.go │ │ │ ├── bluetooth_linux.go │ │ │ ├── bpxsvc_zos.go │ │ │ ├── bpxsvc_zos.s │ │ │ ├── cap_freebsd.go │ │ │ ├── constants.go │ │ │ ├── dev_aix_ppc.go │ │ │ ├── dev_aix_ppc64.go │ │ │ ├── dev_darwin.go │ │ │ ├── dev_dragonfly.go │ │ │ ├── dev_freebsd.go │ │ │ ├── dev_linux.go │ │ │ ├── dev_netbsd.go │ │ │ ├── dev_openbsd.go │ │ │ ├── dev_zos.go │ │ │ ├── dirent.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── env_unix.go │ │ │ ├── fcntl.go │ │ │ ├── fcntl_darwin.go │ │ │ ├── fcntl_linux_32bit.go │ │ │ ├── fdset.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── ifreq_linux.go │ │ │ ├── ioctl_linux.go │ │ │ ├── ioctl_signed.go │ │ │ ├── ioctl_unsigned.go │ │ │ ├── ioctl_zos.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mmap_nomremap.go │ │ │ ├── mremap.go │ │ │ ├── pagesize_unix.go │ │ │ ├── pledge_openbsd.go │ │ │ ├── ptrace_darwin.go │ │ │ ├── ptrace_ios.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── readdirent_getdents.go │ │ │ ├── readdirent_getdirentries.go │ │ │ ├── sockcmsg_dragonfly.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── sockcmsg_unix_other.go │ │ │ ├── sockcmsg_zos.go │ │ │ ├── symaddr_zos_s390x.s │ │ │ ├── syscall.go │ │ │ ├── syscall_aix.go │ │ │ ├── syscall_aix_ppc.go │ │ │ ├── syscall_aix_ppc64.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_darwin.go │ │ │ ├── syscall_darwin_amd64.go │ │ │ ├── syscall_darwin_arm64.go │ │ │ ├── syscall_darwin_libSystem.go │ │ │ ├── syscall_dragonfly.go │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ ├── syscall_freebsd.go │ │ │ ├── syscall_freebsd_386.go │ │ │ ├── syscall_freebsd_amd64.go │ │ │ ├── syscall_freebsd_arm.go │ │ │ ├── syscall_freebsd_arm64.go │ │ │ ├── syscall_freebsd_riscv64.go │ │ │ ├── syscall_hurd.go │ │ │ ├── syscall_hurd_386.go │ │ │ ├── syscall_illumos.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_alarm.go │ │ │ ├── syscall_linux_amd64.go │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── syscall_linux_arm64.go │ │ │ ├── syscall_linux_gc.go │ │ │ ├── syscall_linux_gc_386.go │ │ │ ├── syscall_linux_gc_arm.go │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ ├── syscall_linux_loong64.go │ │ │ ├── syscall_linux_mips64x.go │ │ │ ├── syscall_linux_mipsx.go │ │ │ ├── syscall_linux_ppc.go │ │ │ ├── syscall_linux_ppc64x.go │ │ │ ├── syscall_linux_riscv64.go │ │ │ ├── syscall_linux_s390x.go │ │ │ ├── syscall_linux_sparc64.go │ │ │ ├── syscall_netbsd.go │ │ │ ├── syscall_netbsd_386.go │ │ │ ├── syscall_netbsd_amd64.go │ │ │ ├── syscall_netbsd_arm.go │ │ │ ├── syscall_netbsd_arm64.go │ │ │ ├── syscall_openbsd.go │ │ │ ├── syscall_openbsd_386.go │ │ │ ├── syscall_openbsd_amd64.go │ │ │ ├── syscall_openbsd_arm.go │ │ │ ├── syscall_openbsd_arm64.go │ │ │ ├── syscall_openbsd_libc.go │ │ │ ├── syscall_openbsd_mips64.go │ │ │ ├── syscall_openbsd_ppc64.go │ │ │ ├── syscall_openbsd_riscv64.go │ │ │ ├── syscall_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_unix_gc.go │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ ├── syscall_zos_s390x.go │ │ │ ├── sysvshm_linux.go │ │ │ ├── sysvshm_unix.go │ │ │ ├── sysvshm_unix_other.go │ │ │ ├── timestruct.go │ │ │ ├── unveil_openbsd.go │ │ │ ├── vgetrandom_linux.go │ │ │ ├── vgetrandom_unsupported.go │ │ │ ├── xattr_bsd.go │ │ │ ├── zerrors_aix_ppc.go │ │ │ ├── zerrors_aix_ppc64.go │ │ │ ├── zerrors_darwin_amd64.go │ │ │ ├── zerrors_darwin_arm64.go │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ ├── zerrors_freebsd_386.go │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ ├── zerrors_freebsd_arm.go │ │ │ ├── zerrors_freebsd_arm64.go │ │ │ ├── zerrors_freebsd_riscv64.go │ │ │ ├── zerrors_linux.go │ │ │ ├── zerrors_linux_386.go │ │ │ ├── zerrors_linux_amd64.go │ │ │ ├── zerrors_linux_arm.go │ │ │ ├── zerrors_linux_arm64.go │ │ │ ├── zerrors_linux_loong64.go │ │ │ ├── zerrors_linux_mips.go │ │ │ ├── zerrors_linux_mips64.go │ │ │ ├── zerrors_linux_mips64le.go │ │ │ ├── zerrors_linux_mipsle.go │ │ │ ├── zerrors_linux_ppc.go │ │ │ ├── zerrors_linux_ppc64.go │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ ├── zerrors_linux_riscv64.go │ │ │ ├── zerrors_linux_s390x.go │ │ │ ├── zerrors_linux_sparc64.go │ │ │ ├── zerrors_netbsd_386.go │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ ├── zerrors_netbsd_arm.go │ │ │ ├── zerrors_netbsd_arm64.go │ │ │ ├── zerrors_openbsd_386.go │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ ├── zerrors_openbsd_arm.go │ │ │ ├── zerrors_openbsd_arm64.go │ │ │ ├── zerrors_openbsd_mips64.go │ │ │ ├── zerrors_openbsd_ppc64.go │ │ │ ├── zerrors_openbsd_riscv64.go │ │ │ ├── zerrors_solaris_amd64.go │ │ │ ├── zerrors_zos_s390x.go │ │ │ ├── zptrace_armnn_linux.go │ │ │ ├── zptrace_linux_arm64.go │ │ │ ├── zptrace_mipsnn_linux.go │ │ │ ├── zptrace_mipsnnle_linux.go │ │ │ ├── zptrace_x86_linux.go │ │ │ ├── zsymaddr_zos_s390x.s │ │ │ ├── zsyscall_aix_ppc.go │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_amd64.s │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ ├── zsyscall_darwin_arm64.s │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ ├── zsyscall_freebsd_386.go │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ ├── zsyscall_freebsd_arm64.go │ │ │ ├── zsyscall_freebsd_riscv64.go │ │ │ ├── zsyscall_illumos_amd64.go │ │ │ ├── zsyscall_linux.go │ │ │ ├── zsyscall_linux_386.go │ │ │ ├── zsyscall_linux_amd64.go │ │ │ ├── zsyscall_linux_arm.go │ │ │ ├── zsyscall_linux_arm64.go │ │ │ ├── zsyscall_linux_loong64.go │ │ │ ├── zsyscall_linux_mips.go │ │ │ ├── zsyscall_linux_mips64.go │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ ├── zsyscall_linux_ppc.go │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ ├── zsyscall_linux_riscv64.go │ │ │ ├── zsyscall_linux_s390x.go │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ ├── zsyscall_netbsd_386.go │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ ├── zsyscall_netbsd_arm64.go │ │ │ ├── zsyscall_openbsd_386.go │ │ │ ├── zsyscall_openbsd_386.s │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ ├── zsyscall_openbsd_amd64.s │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ ├── zsyscall_openbsd_arm.s │ │ │ ├── zsyscall_openbsd_arm64.go │ │ │ ├── zsyscall_openbsd_arm64.s │ │ │ ├── zsyscall_openbsd_mips64.go │ │ │ ├── zsyscall_openbsd_mips64.s │ │ │ ├── zsyscall_openbsd_ppc64.go │ │ │ ├── zsyscall_openbsd_ppc64.s │ │ │ ├── zsyscall_openbsd_riscv64.go │ │ │ ├── zsyscall_openbsd_riscv64.s │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ ├── zsyscall_zos_s390x.go │ │ │ ├── zsysctl_openbsd_386.go │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ ├── zsysctl_openbsd_arm64.go │ │ │ ├── zsysctl_openbsd_mips64.go │ │ │ ├── zsysctl_openbsd_ppc64.go │ │ │ ├── zsysctl_openbsd_riscv64.go │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ ├── zsysnum_freebsd_386.go │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ ├── zsysnum_freebsd_arm64.go │ │ │ ├── zsysnum_freebsd_riscv64.go │ │ │ ├── zsysnum_linux_386.go │ │ │ ├── zsysnum_linux_amd64.go │ │ │ ├── zsysnum_linux_arm.go │ │ │ ├── zsysnum_linux_arm64.go │ │ │ ├── zsysnum_linux_loong64.go │ │ │ ├── zsysnum_linux_mips.go │ │ │ ├── zsysnum_linux_mips64.go │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ ├── zsysnum_linux_ppc.go │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ ├── zsysnum_linux_riscv64.go │ │ │ ├── zsysnum_linux_s390x.go │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ ├── zsysnum_netbsd_386.go │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ ├── zsysnum_netbsd_arm64.go │ │ │ ├── zsysnum_openbsd_386.go │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ ├── zsysnum_openbsd_arm64.go │ │ │ ├── zsysnum_openbsd_mips64.go │ │ │ ├── zsysnum_openbsd_ppc64.go │ │ │ ├── zsysnum_openbsd_riscv64.go │ │ │ ├── zsysnum_zos_s390x.go │ │ │ ├── ztypes_aix_ppc.go │ │ │ ├── ztypes_aix_ppc64.go │ │ │ ├── ztypes_darwin_amd64.go │ │ │ ├── ztypes_darwin_arm64.go │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ ├── ztypes_freebsd_386.go │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ ├── ztypes_freebsd_arm.go │ │ │ ├── ztypes_freebsd_arm64.go │ │ │ ├── ztypes_freebsd_riscv64.go │ │ │ ├── ztypes_linux.go │ │ │ ├── ztypes_linux_386.go │ │ │ ├── ztypes_linux_amd64.go │ │ │ ├── ztypes_linux_arm.go │ │ │ ├── ztypes_linux_arm64.go │ │ │ ├── ztypes_linux_loong64.go │ │ │ ├── ztypes_linux_mips.go │ │ │ ├── ztypes_linux_mips64.go │ │ │ ├── ztypes_linux_mips64le.go │ │ │ ├── ztypes_linux_mipsle.go │ │ │ ├── ztypes_linux_ppc.go │ │ │ ├── ztypes_linux_ppc64.go │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ ├── ztypes_linux_riscv64.go │ │ │ ├── ztypes_linux_s390x.go │ │ │ ├── ztypes_linux_sparc64.go │ │ │ ├── ztypes_netbsd_386.go │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ ├── ztypes_netbsd_arm.go │ │ │ ├── ztypes_netbsd_arm64.go │ │ │ ├── ztypes_openbsd_386.go │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ ├── ztypes_openbsd_arm.go │ │ │ ├── ztypes_openbsd_arm64.go │ │ │ ├── ztypes_openbsd_mips64.go │ │ │ ├── ztypes_openbsd_ppc64.go │ │ │ ├── ztypes_openbsd_riscv64.go │ │ │ ├── ztypes_solaris_amd64.go │ │ │ └── ztypes_zos_s390x.go │ │ └── windows │ │ │ ├── aliases.go │ │ │ ├── dll_windows.go │ │ │ ├── env_windows.go │ │ │ ├── eventlog.go │ │ │ ├── exec_windows.go │ │ │ ├── memory_windows.go │ │ │ ├── mkerrors.bash │ │ │ ├── mkknownfolderids.bash │ │ │ ├── mksyscall.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── registry │ │ │ ├── key.go │ │ │ ├── mksyscall.go │ │ │ ├── syscall.go │ │ │ ├── value.go │ │ │ └── zsyscall_windows.go │ │ │ ├── security_windows.go │ │ │ ├── service.go │ │ │ ├── setupapi_windows.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_windows.go │ │ │ ├── types_windows.go │ │ │ ├── types_windows_386.go │ │ │ ├── types_windows_amd64.go │ │ │ ├── types_windows_arm.go │ │ │ ├── types_windows_arm64.go │ │ │ ├── zerrors_windows.go │ │ │ ├── zknownfolderids_windows.go │ │ │ └── zsyscall_windows.go │ │ ├── term │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── codereview.cfg │ │ ├── term.go │ │ ├── term_plan9.go │ │ ├── term_unix.go │ │ ├── term_unix_bsd.go │ │ ├── term_unix_other.go │ │ ├── term_unsupported.go │ │ ├── term_windows.go │ │ └── terminal.go │ │ ├── text │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── cases │ │ │ ├── cases.go │ │ │ ├── context.go │ │ │ ├── fold.go │ │ │ ├── icu.go │ │ │ ├── info.go │ │ │ ├── map.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ └── trieval.go │ │ ├── encoding │ │ │ ├── charmap │ │ │ │ ├── charmap.go │ │ │ │ └── tables.go │ │ │ ├── encoding.go │ │ │ ├── htmlindex │ │ │ │ ├── htmlindex.go │ │ │ │ ├── map.go │ │ │ │ └── tables.go │ │ │ ├── internal │ │ │ │ ├── identifier │ │ │ │ │ ├── identifier.go │ │ │ │ │ └── mib.go │ │ │ │ └── internal.go │ │ │ ├── japanese │ │ │ │ ├── all.go │ │ │ │ ├── eucjp.go │ │ │ │ ├── iso2022jp.go │ │ │ │ ├── shiftjis.go │ │ │ │ └── tables.go │ │ │ ├── korean │ │ │ │ ├── euckr.go │ │ │ │ └── tables.go │ │ │ ├── simplifiedchinese │ │ │ │ ├── all.go │ │ │ │ ├── gbk.go │ │ │ │ ├── hzgb2312.go │ │ │ │ └── tables.go │ │ │ ├── traditionalchinese │ │ │ │ ├── big5.go │ │ │ │ └── tables.go │ │ │ └── unicode │ │ │ │ ├── override.go │ │ │ │ └── unicode.go │ │ ├── internal │ │ │ ├── internal.go │ │ │ ├── language │ │ │ │ ├── common.go │ │ │ │ ├── compact.go │ │ │ │ ├── compact │ │ │ │ │ ├── compact.go │ │ │ │ │ ├── language.go │ │ │ │ │ ├── parents.go │ │ │ │ │ ├── tables.go │ │ │ │ │ └── tags.go │ │ │ │ ├── compose.go │ │ │ │ ├── coverage.go │ │ │ │ ├── language.go │ │ │ │ ├── lookup.go │ │ │ │ ├── match.go │ │ │ │ ├── parse.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ ├── match.go │ │ │ ├── tag │ │ │ │ └── tag.go │ │ │ └── utf8internal │ │ │ │ └── utf8internal.go │ │ ├── language │ │ │ ├── coverage.go │ │ │ ├── doc.go │ │ │ ├── language.go │ │ │ ├── match.go │ │ │ ├── parse.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── runes │ │ │ ├── cond.go │ │ │ └── runes.go │ │ ├── secure │ │ │ └── bidirule │ │ │ │ ├── bidirule.go │ │ │ │ ├── bidirule10.0.0.go │ │ │ │ └── bidirule9.0.0.go │ │ ├── transform │ │ │ └── transform.go │ │ └── unicode │ │ │ ├── bidi │ │ │ ├── bidi.go │ │ │ ├── bracket.go │ │ │ ├── core.go │ │ │ ├── prop.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ └── trieval.go │ │ │ └── norm │ │ │ ├── composition.go │ │ │ ├── forminfo.go │ │ │ ├── input.go │ │ │ ├── iter.go │ │ │ ├── normalize.go │ │ │ ├── readwriter.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ └── trie.go │ │ ├── time │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── rate │ │ │ ├── rate.go │ │ │ └── sometimes.go │ │ └── tools │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── cover │ │ └── profile.go │ │ └── go │ │ └── ast │ │ └── inspector │ │ ├── inspector.go │ │ └── typeof.go ├── google.golang.org │ └── protobuf │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── encoding │ │ ├── prototext │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ └── encode.go │ │ └── protowire │ │ │ └── wire.go │ │ ├── internal │ │ ├── descfmt │ │ │ └── stringer.go │ │ ├── descopts │ │ │ └── options.go │ │ ├── detrand │ │ │ └── rand.go │ │ ├── editiondefaults │ │ │ ├── defaults.go │ │ │ └── editions_defaults.binpb │ │ ├── encoding │ │ │ ├── defval │ │ │ │ └── default.go │ │ │ ├── messageset │ │ │ │ └── messageset.go │ │ │ ├── tag │ │ │ │ └── tag.go │ │ │ └── text │ │ │ │ ├── decode.go │ │ │ │ ├── decode_number.go │ │ │ │ ├── decode_string.go │ │ │ │ ├── decode_token.go │ │ │ │ ├── doc.go │ │ │ │ └── encode.go │ │ ├── errors │ │ │ ├── errors.go │ │ │ ├── is_go112.go │ │ │ └── is_go113.go │ │ ├── filedesc │ │ │ ├── build.go │ │ │ ├── desc.go │ │ │ ├── desc_init.go │ │ │ ├── desc_lazy.go │ │ │ ├── desc_list.go │ │ │ ├── desc_list_gen.go │ │ │ ├── editions.go │ │ │ └── placeholder.go │ │ ├── filetype │ │ │ └── build.go │ │ ├── flags │ │ │ ├── flags.go │ │ │ ├── proto_legacy_disable.go │ │ │ └── proto_legacy_enable.go │ │ ├── genid │ │ │ ├── any_gen.go │ │ │ ├── api_gen.go │ │ │ ├── descriptor_gen.go │ │ │ ├── doc.go │ │ │ ├── duration_gen.go │ │ │ ├── empty_gen.go │ │ │ ├── field_mask_gen.go │ │ │ ├── go_features_gen.go │ │ │ ├── goname.go │ │ │ ├── map_entry.go │ │ │ ├── source_context_gen.go │ │ │ ├── struct_gen.go │ │ │ ├── timestamp_gen.go │ │ │ ├── type_gen.go │ │ │ ├── wrappers.go │ │ │ └── wrappers_gen.go │ │ ├── impl │ │ │ ├── api_export.go │ │ │ ├── checkinit.go │ │ │ ├── codec_extension.go │ │ │ ├── codec_field.go │ │ │ ├── codec_gen.go │ │ │ ├── codec_map.go │ │ │ ├── codec_map_go111.go │ │ │ ├── codec_map_go112.go │ │ │ ├── codec_message.go │ │ │ ├── codec_messageset.go │ │ │ ├── codec_reflect.go │ │ │ ├── codec_tables.go │ │ │ ├── codec_unsafe.go │ │ │ ├── convert.go │ │ │ ├── convert_list.go │ │ │ ├── convert_map.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── enum.go │ │ │ ├── extension.go │ │ │ ├── legacy_enum.go │ │ │ ├── legacy_export.go │ │ │ ├── legacy_extension.go │ │ │ ├── legacy_file.go │ │ │ ├── legacy_message.go │ │ │ ├── merge.go │ │ │ ├── merge_gen.go │ │ │ ├── message.go │ │ │ ├── message_reflect.go │ │ │ ├── message_reflect_field.go │ │ │ ├── message_reflect_gen.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── validate.go │ │ │ └── weak.go │ │ ├── order │ │ │ ├── order.go │ │ │ └── range.go │ │ ├── pragma │ │ │ └── pragma.go │ │ ├── set │ │ │ └── ints.go │ │ ├── strs │ │ │ ├── strings.go │ │ │ ├── strings_pure.go │ │ │ ├── strings_unsafe_go120.go │ │ │ └── strings_unsafe_go121.go │ │ └── version │ │ │ └── version.go │ │ ├── proto │ │ ├── checkinit.go │ │ ├── decode.go │ │ ├── decode_gen.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── encode_gen.go │ │ ├── equal.go │ │ ├── extension.go │ │ ├── merge.go │ │ ├── messageset.go │ │ ├── proto.go │ │ ├── proto_methods.go │ │ ├── proto_reflect.go │ │ ├── reset.go │ │ ├── size.go │ │ ├── size_gen.go │ │ └── wrappers.go │ │ ├── reflect │ │ ├── protodesc │ │ │ ├── desc.go │ │ │ ├── desc_init.go │ │ │ ├── desc_resolve.go │ │ │ ├── desc_validate.go │ │ │ ├── editions.go │ │ │ └── proto.go │ │ ├── protoreflect │ │ │ ├── methods.go │ │ │ ├── proto.go │ │ │ ├── source.go │ │ │ ├── source_gen.go │ │ │ ├── type.go │ │ │ ├── value.go │ │ │ ├── value_equal.go │ │ │ ├── value_pure.go │ │ │ ├── value_union.go │ │ │ ├── value_unsafe_go120.go │ │ │ └── value_unsafe_go121.go │ │ └── protoregistry │ │ │ └── registry.go │ │ ├── runtime │ │ ├── protoiface │ │ │ ├── legacy.go │ │ │ └── methods.go │ │ └── protoimpl │ │ │ ├── impl.go │ │ │ └── version.go │ │ └── types │ │ ├── descriptorpb │ │ └── descriptor.pb.go │ │ ├── gofeaturespb │ │ ├── go_features.pb.go │ │ └── go_features.proto │ │ └── known │ │ ├── anypb │ │ └── any.pb.go │ │ ├── durationpb │ │ └── duration.pb.go │ │ └── timestamppb │ │ └── timestamp.pb.go ├── gopkg.in │ ├── go-playground │ │ └── validator.v9 │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── baked_in.go │ │ │ ├── cache.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── field_level.go │ │ │ ├── logo.png │ │ │ ├── regexes.go │ │ │ ├── struct_level.go │ │ │ ├── translations.go │ │ │ ├── util.go │ │ │ ├── validator.go │ │ │ └── validator_instance.go │ ├── inf.v0 │ │ ├── LICENSE │ │ ├── dec.go │ │ └── rounder.go │ ├── ini.v1 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── error.go │ │ ├── file.go │ │ ├── ini.go │ │ ├── key.go │ │ ├── parser.go │ │ ├── section.go │ │ └── struct.go │ ├── yaml.v2 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go │ └── yaml.v3 │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go ├── k8s.io │ ├── api │ │ ├── LICENSE │ │ ├── admissionregistration │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── apidiscovery │ │ │ └── v2beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── apiserverinternal │ │ │ └── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── apps │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v1beta2 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── authentication │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── authorization │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v2 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v2beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v2beta2 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── certificates │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── coordination │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── annotation_key_constants.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── lifecycle.go │ │ │ │ ├── objectreference.go │ │ │ │ ├── register.go │ │ │ │ ├── resource.go │ │ │ │ ├── taint.go │ │ │ │ ├── toleration.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── well_known_labels.go │ │ │ │ ├── well_known_taints.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── discovery │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── well_known_labels.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── well_known_labels.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── events │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── flowcontrol │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── v1beta2 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v1beta3 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── networking │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── well_known_annotations.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── well_known_labels.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── well_known_annotations.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── node │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── policy │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── rbac │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── resource │ │ │ └── v1alpha2 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── scheduling │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── storage │ │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── apimachinery │ │ ├── LICENSE │ │ ├── pkg │ │ │ ├── api │ │ │ │ ├── equality │ │ │ │ │ └── semantic.go │ │ │ │ ├── errors │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ └── errors.go │ │ │ │ ├── meta │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── conditions.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── firsthit_restmapper.go │ │ │ │ │ ├── help.go │ │ │ │ │ ├── interfaces.go │ │ │ │ │ ├── lazy.go │ │ │ │ │ ├── meta.go │ │ │ │ │ ├── multirestmapper.go │ │ │ │ │ ├── priority.go │ │ │ │ │ └── restmapper.go │ │ │ │ ├── resource │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── amount.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── math.go │ │ │ │ │ ├── quantity.go │ │ │ │ │ ├── quantity_proto.go │ │ │ │ │ ├── scale_int.go │ │ │ │ │ ├── suffix.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── validation │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generic.go │ │ │ │ │ └── objectmeta.go │ │ │ ├── apis │ │ │ │ └── meta │ │ │ │ │ └── v1 │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── controller_ref.go │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── deepcopy.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── group_version.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── labels.go │ │ │ │ │ ├── meta.go │ │ │ │ │ ├── micro_time.go │ │ │ │ │ ├── micro_time_fuzz.go │ │ │ │ │ ├── micro_time_proto.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── time.go │ │ │ │ │ ├── time_fuzz.go │ │ │ │ │ ├── time_proto.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── unstructured │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── unstructured.go │ │ │ │ │ ├── unstructured_list.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ ├── validation │ │ │ │ │ └── validation.go │ │ │ │ │ ├── watch.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ ├── conversion │ │ │ │ ├── converter.go │ │ │ │ ├── deep_equal.go │ │ │ │ ├── doc.go │ │ │ │ ├── helper.go │ │ │ │ └── queryparams │ │ │ │ │ ├── convert.go │ │ │ │ │ └── doc.go │ │ │ ├── fields │ │ │ │ ├── doc.go │ │ │ │ ├── fields.go │ │ │ │ ├── requirements.go │ │ │ │ └── selector.go │ │ │ ├── labels │ │ │ │ ├── doc.go │ │ │ │ ├── labels.go │ │ │ │ ├── selector.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── runtime │ │ │ │ ├── allocator.go │ │ │ │ ├── codec.go │ │ │ │ ├── codec_check.go │ │ │ │ ├── conversion.go │ │ │ │ ├── converter.go │ │ │ │ ├── doc.go │ │ │ │ ├── embedded.go │ │ │ │ ├── error.go │ │ │ │ ├── extension.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── helper.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── mapper.go │ │ │ │ ├── negotiate.go │ │ │ │ ├── register.go │ │ │ │ ├── schema │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── group_version.go │ │ │ │ │ └── interfaces.go │ │ │ │ ├── scheme.go │ │ │ │ ├── scheme_builder.go │ │ │ │ ├── serializer │ │ │ │ │ ├── codec_factory.go │ │ │ │ │ ├── json │ │ │ │ │ │ ├── json.go │ │ │ │ │ │ └── meta.go │ │ │ │ │ ├── negotiated_codec.go │ │ │ │ │ ├── protobuf │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── protobuf.go │ │ │ │ │ ├── recognizer │ │ │ │ │ │ └── recognizer.go │ │ │ │ │ ├── streaming │ │ │ │ │ │ └── streaming.go │ │ │ │ │ └── versioning │ │ │ │ │ │ └── versioning.go │ │ │ │ ├── swagger_doc_generator.go │ │ │ │ ├── types.go │ │ │ │ ├── types_proto.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── selection │ │ │ │ └── operator.go │ │ │ ├── types │ │ │ │ ├── doc.go │ │ │ │ ├── namespacedname.go │ │ │ │ ├── nodename.go │ │ │ │ ├── patch.go │ │ │ │ └── uid.go │ │ │ ├── util │ │ │ │ ├── errors │ │ │ │ │ ├── doc.go │ │ │ │ │ └── errors.go │ │ │ │ ├── framer │ │ │ │ │ └── framer.go │ │ │ │ ├── intstr │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── instr_fuzz.go │ │ │ │ │ └── intstr.go │ │ │ │ ├── json │ │ │ │ │ └── json.go │ │ │ │ ├── managedfields │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ ├── extract.go │ │ │ │ │ ├── fieldmanager.go │ │ │ │ │ ├── gvkparser.go │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── atmostevery.go │ │ │ │ │ │ ├── buildmanagerinfo.go │ │ │ │ │ │ ├── capmanagers.go │ │ │ │ │ │ ├── conflict.go │ │ │ │ │ │ ├── fieldmanager.go │ │ │ │ │ │ ├── fields.go │ │ │ │ │ │ ├── lastapplied.go │ │ │ │ │ │ ├── lastappliedmanager.go │ │ │ │ │ │ ├── lastappliedupdater.go │ │ │ │ │ │ ├── managedfields.go │ │ │ │ │ │ ├── managedfieldsupdater.go │ │ │ │ │ │ ├── manager.go │ │ │ │ │ │ ├── pathelement.go │ │ │ │ │ │ ├── skipnonapplied.go │ │ │ │ │ │ ├── stripmeta.go │ │ │ │ │ │ ├── structuredmerge.go │ │ │ │ │ │ ├── typeconverter.go │ │ │ │ │ │ └── versionconverter.go │ │ │ │ │ ├── node.yaml │ │ │ │ │ ├── pod.yaml │ │ │ │ │ ├── scalehandler.go │ │ │ │ │ └── typeconverter.go │ │ │ │ ├── naming │ │ │ │ │ └── from_stack.go │ │ │ │ ├── net │ │ │ │ │ ├── http.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── port_range.go │ │ │ │ │ ├── port_split.go │ │ │ │ │ └── util.go │ │ │ │ ├── runtime │ │ │ │ │ └── runtime.go │ │ │ │ ├── sets │ │ │ │ │ ├── byte.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── empty.go │ │ │ │ │ ├── int.go │ │ │ │ │ ├── int32.go │ │ │ │ │ ├── int64.go │ │ │ │ │ ├── ordered.go │ │ │ │ │ ├── set.go │ │ │ │ │ └── string.go │ │ │ │ ├── validation │ │ │ │ │ ├── field │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ └── path.go │ │ │ │ │ └── validation.go │ │ │ │ ├── wait │ │ │ │ │ ├── backoff.go │ │ │ │ │ ├── delay.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── loop.go │ │ │ │ │ ├── poll.go │ │ │ │ │ ├── timer.go │ │ │ │ │ └── wait.go │ │ │ │ └── yaml │ │ │ │ │ └── decoder.go │ │ │ ├── version │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ └── types.go │ │ │ └── watch │ │ │ │ ├── doc.go │ │ │ │ ├── filter.go │ │ │ │ ├── mux.go │ │ │ │ ├── streamwatcher.go │ │ │ │ ├── watch.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── third_party │ │ │ └── forked │ │ │ └── golang │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── reflect │ │ │ └── deep_equal.go │ ├── client-go │ │ ├── LICENSE │ │ ├── applyconfigurations │ │ │ ├── admissionregistration │ │ │ │ ├── v1 │ │ │ │ │ ├── matchcondition.go │ │ │ │ │ ├── mutatingwebhook.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ ├── rule.go │ │ │ │ │ ├── rulewithoperations.go │ │ │ │ │ ├── servicereference.go │ │ │ │ │ ├── validatingwebhook.go │ │ │ │ │ ├── validatingwebhookconfiguration.go │ │ │ │ │ └── webhookclientconfig.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── auditannotation.go │ │ │ │ │ ├── expressionwarning.go │ │ │ │ │ ├── matchcondition.go │ │ │ │ │ ├── matchresources.go │ │ │ │ │ ├── namedrulewithoperations.go │ │ │ │ │ ├── paramkind.go │ │ │ │ │ ├── paramref.go │ │ │ │ │ ├── typechecking.go │ │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ │ ├── validatingadmissionpolicybindingspec.go │ │ │ │ │ ├── validatingadmissionpolicyspec.go │ │ │ │ │ ├── validatingadmissionpolicystatus.go │ │ │ │ │ └── validation.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── matchcondition.go │ │ │ │ │ ├── mutatingwebhook.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ ├── servicereference.go │ │ │ │ │ ├── validatingwebhook.go │ │ │ │ │ ├── validatingwebhookconfiguration.go │ │ │ │ │ └── webhookclientconfig.go │ │ │ ├── apiserverinternal │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── serverstorageversion.go │ │ │ │ │ ├── storageversion.go │ │ │ │ │ ├── storageversioncondition.go │ │ │ │ │ └── storageversionstatus.go │ │ │ ├── apps │ │ │ │ ├── v1 │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── daemonsetcondition.go │ │ │ │ │ ├── daemonsetspec.go │ │ │ │ │ ├── daemonsetstatus.go │ │ │ │ │ ├── daemonsetupdatestrategy.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deploymentcondition.go │ │ │ │ │ ├── deploymentspec.go │ │ │ │ │ ├── deploymentstatus.go │ │ │ │ │ ├── deploymentstrategy.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ ├── replicasetcondition.go │ │ │ │ │ ├── replicasetspec.go │ │ │ │ │ ├── replicasetstatus.go │ │ │ │ │ ├── rollingupdatedaemonset.go │ │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ │ ├── rollingupdatestatefulsetstrategy.go │ │ │ │ │ ├── statefulset.go │ │ │ │ │ ├── statefulsetcondition.go │ │ │ │ │ ├── statefulsetordinals.go │ │ │ │ │ ├── statefulsetpersistentvolumeclaimretentionpolicy.go │ │ │ │ │ ├── statefulsetspec.go │ │ │ │ │ ├── statefulsetstatus.go │ │ │ │ │ └── statefulsetupdatestrategy.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deploymentcondition.go │ │ │ │ │ ├── deploymentspec.go │ │ │ │ │ ├── deploymentstatus.go │ │ │ │ │ ├── deploymentstrategy.go │ │ │ │ │ ├── rollbackconfig.go │ │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ │ ├── rollingupdatestatefulsetstrategy.go │ │ │ │ │ ├── statefulset.go │ │ │ │ │ ├── statefulsetcondition.go │ │ │ │ │ ├── statefulsetordinals.go │ │ │ │ │ ├── statefulsetpersistentvolumeclaimretentionpolicy.go │ │ │ │ │ ├── statefulsetspec.go │ │ │ │ │ ├── statefulsetstatus.go │ │ │ │ │ └── statefulsetupdatestrategy.go │ │ │ │ └── v1beta2 │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── daemonsetcondition.go │ │ │ │ │ ├── daemonsetspec.go │ │ │ │ │ ├── daemonsetstatus.go │ │ │ │ │ ├── daemonsetupdatestrategy.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deploymentcondition.go │ │ │ │ │ ├── deploymentspec.go │ │ │ │ │ ├── deploymentstatus.go │ │ │ │ │ ├── deploymentstrategy.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ ├── replicasetcondition.go │ │ │ │ │ ├── replicasetspec.go │ │ │ │ │ ├── replicasetstatus.go │ │ │ │ │ ├── rollingupdatedaemonset.go │ │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ │ ├── rollingupdatestatefulsetstrategy.go │ │ │ │ │ ├── scale.go │ │ │ │ │ ├── statefulset.go │ │ │ │ │ ├── statefulsetcondition.go │ │ │ │ │ ├── statefulsetordinals.go │ │ │ │ │ ├── statefulsetpersistentvolumeclaimretentionpolicy.go │ │ │ │ │ ├── statefulsetspec.go │ │ │ │ │ ├── statefulsetstatus.go │ │ │ │ │ └── statefulsetupdatestrategy.go │ │ │ ├── autoscaling │ │ │ │ ├── v1 │ │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ │ ├── scale.go │ │ │ │ │ ├── scalespec.go │ │ │ │ │ └── scalestatus.go │ │ │ │ ├── v2 │ │ │ │ │ ├── containerresourcemetricsource.go │ │ │ │ │ ├── containerresourcemetricstatus.go │ │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ │ ├── externalmetricsource.go │ │ │ │ │ ├── externalmetricstatus.go │ │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ │ ├── horizontalpodautoscalerbehavior.go │ │ │ │ │ ├── horizontalpodautoscalercondition.go │ │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ │ ├── hpascalingpolicy.go │ │ │ │ │ ├── hpascalingrules.go │ │ │ │ │ ├── metricidentifier.go │ │ │ │ │ ├── metricspec.go │ │ │ │ │ ├── metricstatus.go │ │ │ │ │ ├── metrictarget.go │ │ │ │ │ ├── metricvaluestatus.go │ │ │ │ │ ├── objectmetricsource.go │ │ │ │ │ ├── objectmetricstatus.go │ │ │ │ │ ├── podsmetricsource.go │ │ │ │ │ ├── podsmetricstatus.go │ │ │ │ │ ├── resourcemetricsource.go │ │ │ │ │ └── resourcemetricstatus.go │ │ │ │ ├── v2beta1 │ │ │ │ │ ├── containerresourcemetricsource.go │ │ │ │ │ ├── containerresourcemetricstatus.go │ │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ │ ├── externalmetricsource.go │ │ │ │ │ ├── externalmetricstatus.go │ │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ │ ├── horizontalpodautoscalercondition.go │ │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ │ ├── metricspec.go │ │ │ │ │ ├── metricstatus.go │ │ │ │ │ ├── objectmetricsource.go │ │ │ │ │ ├── objectmetricstatus.go │ │ │ │ │ ├── podsmetricsource.go │ │ │ │ │ ├── podsmetricstatus.go │ │ │ │ │ ├── resourcemetricsource.go │ │ │ │ │ └── resourcemetricstatus.go │ │ │ │ └── v2beta2 │ │ │ │ │ ├── containerresourcemetricsource.go │ │ │ │ │ ├── containerresourcemetricstatus.go │ │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ │ ├── externalmetricsource.go │ │ │ │ │ ├── externalmetricstatus.go │ │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ │ ├── horizontalpodautoscalerbehavior.go │ │ │ │ │ ├── horizontalpodautoscalercondition.go │ │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ │ ├── hpascalingpolicy.go │ │ │ │ │ ├── hpascalingrules.go │ │ │ │ │ ├── metricidentifier.go │ │ │ │ │ ├── metricspec.go │ │ │ │ │ ├── metricstatus.go │ │ │ │ │ ├── metrictarget.go │ │ │ │ │ ├── metricvaluestatus.go │ │ │ │ │ ├── objectmetricsource.go │ │ │ │ │ ├── objectmetricstatus.go │ │ │ │ │ ├── podsmetricsource.go │ │ │ │ │ ├── podsmetricstatus.go │ │ │ │ │ ├── resourcemetricsource.go │ │ │ │ │ └── resourcemetricstatus.go │ │ │ ├── batch │ │ │ │ ├── v1 │ │ │ │ │ ├── cronjob.go │ │ │ │ │ ├── cronjobspec.go │ │ │ │ │ ├── cronjobstatus.go │ │ │ │ │ ├── job.go │ │ │ │ │ ├── jobcondition.go │ │ │ │ │ ├── jobspec.go │ │ │ │ │ ├── jobstatus.go │ │ │ │ │ ├── jobtemplatespec.go │ │ │ │ │ ├── podfailurepolicy.go │ │ │ │ │ ├── podfailurepolicyonexitcodesrequirement.go │ │ │ │ │ ├── podfailurepolicyonpodconditionspattern.go │ │ │ │ │ ├── podfailurepolicyrule.go │ │ │ │ │ └── uncountedterminatedpods.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── cronjob.go │ │ │ │ │ ├── cronjobspec.go │ │ │ │ │ ├── cronjobstatus.go │ │ │ │ │ └── jobtemplatespec.go │ │ │ ├── certificates │ │ │ │ ├── v1 │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ ├── certificatesigningrequestcondition.go │ │ │ │ │ ├── certificatesigningrequestspec.go │ │ │ │ │ └── certificatesigningrequeststatus.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── clustertrustbundle.go │ │ │ │ │ └── clustertrustbundlespec.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ ├── certificatesigningrequestcondition.go │ │ │ │ │ ├── certificatesigningrequestspec.go │ │ │ │ │ └── certificatesigningrequeststatus.go │ │ │ ├── coordination │ │ │ │ ├── v1 │ │ │ │ │ ├── lease.go │ │ │ │ │ └── leasespec.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── lease.go │ │ │ │ │ └── leasespec.go │ │ │ ├── core │ │ │ │ └── v1 │ │ │ │ │ ├── affinity.go │ │ │ │ │ ├── attachedvolume.go │ │ │ │ │ ├── awselasticblockstorevolumesource.go │ │ │ │ │ ├── azurediskvolumesource.go │ │ │ │ │ ├── azurefilepersistentvolumesource.go │ │ │ │ │ ├── azurefilevolumesource.go │ │ │ │ │ ├── capabilities.go │ │ │ │ │ ├── cephfspersistentvolumesource.go │ │ │ │ │ ├── cephfsvolumesource.go │ │ │ │ │ ├── cinderpersistentvolumesource.go │ │ │ │ │ ├── cindervolumesource.go │ │ │ │ │ ├── claimsource.go │ │ │ │ │ ├── clientipconfig.go │ │ │ │ │ ├── componentcondition.go │ │ │ │ │ ├── componentstatus.go │ │ │ │ │ ├── configmap.go │ │ │ │ │ ├── configmapenvsource.go │ │ │ │ │ ├── configmapkeyselector.go │ │ │ │ │ ├── configmapnodeconfigsource.go │ │ │ │ │ ├── configmapprojection.go │ │ │ │ │ ├── configmapvolumesource.go │ │ │ │ │ ├── container.go │ │ │ │ │ ├── containerimage.go │ │ │ │ │ ├── containerport.go │ │ │ │ │ ├── containerresizepolicy.go │ │ │ │ │ ├── containerstate.go │ │ │ │ │ ├── containerstaterunning.go │ │ │ │ │ ├── containerstateterminated.go │ │ │ │ │ ├── containerstatewaiting.go │ │ │ │ │ ├── containerstatus.go │ │ │ │ │ ├── csipersistentvolumesource.go │ │ │ │ │ ├── csivolumesource.go │ │ │ │ │ ├── daemonendpoint.go │ │ │ │ │ ├── downwardapiprojection.go │ │ │ │ │ ├── downwardapivolumefile.go │ │ │ │ │ ├── downwardapivolumesource.go │ │ │ │ │ ├── emptydirvolumesource.go │ │ │ │ │ ├── endpointaddress.go │ │ │ │ │ ├── endpointport.go │ │ │ │ │ ├── endpoints.go │ │ │ │ │ ├── endpointsubset.go │ │ │ │ │ ├── envfromsource.go │ │ │ │ │ ├── envvar.go │ │ │ │ │ ├── envvarsource.go │ │ │ │ │ ├── ephemeralcontainer.go │ │ │ │ │ ├── ephemeralcontainercommon.go │ │ │ │ │ ├── ephemeralvolumesource.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── eventseries.go │ │ │ │ │ ├── eventsource.go │ │ │ │ │ ├── execaction.go │ │ │ │ │ ├── fcvolumesource.go │ │ │ │ │ ├── flexpersistentvolumesource.go │ │ │ │ │ ├── flexvolumesource.go │ │ │ │ │ ├── flockervolumesource.go │ │ │ │ │ ├── gcepersistentdiskvolumesource.go │ │ │ │ │ ├── gitrepovolumesource.go │ │ │ │ │ ├── glusterfspersistentvolumesource.go │ │ │ │ │ ├── glusterfsvolumesource.go │ │ │ │ │ ├── grpcaction.go │ │ │ │ │ ├── hostalias.go │ │ │ │ │ ├── hostpathvolumesource.go │ │ │ │ │ ├── httpgetaction.go │ │ │ │ │ ├── httpheader.go │ │ │ │ │ ├── iscsipersistentvolumesource.go │ │ │ │ │ ├── iscsivolumesource.go │ │ │ │ │ ├── keytopath.go │ │ │ │ │ ├── lifecycle.go │ │ │ │ │ ├── lifecyclehandler.go │ │ │ │ │ ├── limitrange.go │ │ │ │ │ ├── limitrangeitem.go │ │ │ │ │ ├── limitrangespec.go │ │ │ │ │ ├── loadbalanceringress.go │ │ │ │ │ ├── loadbalancerstatus.go │ │ │ │ │ ├── localobjectreference.go │ │ │ │ │ ├── localvolumesource.go │ │ │ │ │ ├── namespace.go │ │ │ │ │ ├── namespacecondition.go │ │ │ │ │ ├── namespacespec.go │ │ │ │ │ ├── namespacestatus.go │ │ │ │ │ ├── nfsvolumesource.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── nodeaddress.go │ │ │ │ │ ├── nodeaffinity.go │ │ │ │ │ ├── nodecondition.go │ │ │ │ │ ├── nodeconfigsource.go │ │ │ │ │ ├── nodeconfigstatus.go │ │ │ │ │ ├── nodedaemonendpoints.go │ │ │ │ │ ├── nodeselector.go │ │ │ │ │ ├── nodeselectorrequirement.go │ │ │ │ │ ├── nodeselectorterm.go │ │ │ │ │ ├── nodespec.go │ │ │ │ │ ├── nodestatus.go │ │ │ │ │ ├── nodesysteminfo.go │ │ │ │ │ ├── objectfieldselector.go │ │ │ │ │ ├── objectreference.go │ │ │ │ │ ├── persistentvolume.go │ │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ │ ├── persistentvolumeclaimcondition.go │ │ │ │ │ ├── persistentvolumeclaimspec.go │ │ │ │ │ ├── persistentvolumeclaimstatus.go │ │ │ │ │ ├── persistentvolumeclaimtemplate.go │ │ │ │ │ ├── persistentvolumeclaimvolumesource.go │ │ │ │ │ ├── persistentvolumesource.go │ │ │ │ │ ├── persistentvolumespec.go │ │ │ │ │ ├── persistentvolumestatus.go │ │ │ │ │ ├── photonpersistentdiskvolumesource.go │ │ │ │ │ ├── pod.go │ │ │ │ │ ├── podaffinity.go │ │ │ │ │ ├── podaffinityterm.go │ │ │ │ │ ├── podantiaffinity.go │ │ │ │ │ ├── podcondition.go │ │ │ │ │ ├── poddnsconfig.go │ │ │ │ │ ├── poddnsconfigoption.go │ │ │ │ │ ├── podip.go │ │ │ │ │ ├── podos.go │ │ │ │ │ ├── podreadinessgate.go │ │ │ │ │ ├── podresourceclaim.go │ │ │ │ │ ├── podschedulinggate.go │ │ │ │ │ ├── podsecuritycontext.go │ │ │ │ │ ├── podspec.go │ │ │ │ │ ├── podstatus.go │ │ │ │ │ ├── podtemplate.go │ │ │ │ │ ├── podtemplatespec.go │ │ │ │ │ ├── portstatus.go │ │ │ │ │ ├── portworxvolumesource.go │ │ │ │ │ ├── preferredschedulingterm.go │ │ │ │ │ ├── probe.go │ │ │ │ │ ├── probehandler.go │ │ │ │ │ ├── projectedvolumesource.go │ │ │ │ │ ├── quobytevolumesource.go │ │ │ │ │ ├── rbdpersistentvolumesource.go │ │ │ │ │ ├── rbdvolumesource.go │ │ │ │ │ ├── replicationcontroller.go │ │ │ │ │ ├── replicationcontrollercondition.go │ │ │ │ │ ├── replicationcontrollerspec.go │ │ │ │ │ ├── replicationcontrollerstatus.go │ │ │ │ │ ├── resourceclaim.go │ │ │ │ │ ├── resourcefieldselector.go │ │ │ │ │ ├── resourcequota.go │ │ │ │ │ ├── resourcequotaspec.go │ │ │ │ │ ├── resourcequotastatus.go │ │ │ │ │ ├── resourcerequirements.go │ │ │ │ │ ├── scaleiopersistentvolumesource.go │ │ │ │ │ ├── scaleiovolumesource.go │ │ │ │ │ ├── scopedresourceselectorrequirement.go │ │ │ │ │ ├── scopeselector.go │ │ │ │ │ ├── seccompprofile.go │ │ │ │ │ ├── secret.go │ │ │ │ │ ├── secretenvsource.go │ │ │ │ │ ├── secretkeyselector.go │ │ │ │ │ ├── secretprojection.go │ │ │ │ │ ├── secretreference.go │ │ │ │ │ ├── secretvolumesource.go │ │ │ │ │ ├── securitycontext.go │ │ │ │ │ ├── selinuxoptions.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── serviceaccount.go │ │ │ │ │ ├── serviceaccounttokenprojection.go │ │ │ │ │ ├── serviceport.go │ │ │ │ │ ├── servicespec.go │ │ │ │ │ ├── servicestatus.go │ │ │ │ │ ├── sessionaffinityconfig.go │ │ │ │ │ ├── storageospersistentvolumesource.go │ │ │ │ │ ├── storageosvolumesource.go │ │ │ │ │ ├── sysctl.go │ │ │ │ │ ├── taint.go │ │ │ │ │ ├── tcpsocketaction.go │ │ │ │ │ ├── toleration.go │ │ │ │ │ ├── topologyselectorlabelrequirement.go │ │ │ │ │ ├── topologyselectorterm.go │ │ │ │ │ ├── topologyspreadconstraint.go │ │ │ │ │ ├── typedlocalobjectreference.go │ │ │ │ │ ├── typedobjectreference.go │ │ │ │ │ ├── volume.go │ │ │ │ │ ├── volumedevice.go │ │ │ │ │ ├── volumemount.go │ │ │ │ │ ├── volumenodeaffinity.go │ │ │ │ │ ├── volumeprojection.go │ │ │ │ │ ├── volumesource.go │ │ │ │ │ ├── vspherevirtualdiskvolumesource.go │ │ │ │ │ ├── weightedpodaffinityterm.go │ │ │ │ │ └── windowssecuritycontextoptions.go │ │ │ ├── discovery │ │ │ │ ├── v1 │ │ │ │ │ ├── endpoint.go │ │ │ │ │ ├── endpointconditions.go │ │ │ │ │ ├── endpointhints.go │ │ │ │ │ ├── endpointport.go │ │ │ │ │ ├── endpointslice.go │ │ │ │ │ └── forzone.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── endpoint.go │ │ │ │ │ ├── endpointconditions.go │ │ │ │ │ ├── endpointhints.go │ │ │ │ │ ├── endpointport.go │ │ │ │ │ ├── endpointslice.go │ │ │ │ │ └── forzone.go │ │ │ ├── events │ │ │ │ ├── v1 │ │ │ │ │ ├── event.go │ │ │ │ │ └── eventseries.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── event.go │ │ │ │ │ └── eventseries.go │ │ │ ├── extensions │ │ │ │ └── v1beta1 │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── daemonsetcondition.go │ │ │ │ │ ├── daemonsetspec.go │ │ │ │ │ ├── daemonsetstatus.go │ │ │ │ │ ├── daemonsetupdatestrategy.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deploymentcondition.go │ │ │ │ │ ├── deploymentspec.go │ │ │ │ │ ├── deploymentstatus.go │ │ │ │ │ ├── deploymentstrategy.go │ │ │ │ │ ├── httpingresspath.go │ │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressbackend.go │ │ │ │ │ ├── ingressloadbalanceringress.go │ │ │ │ │ ├── ingressloadbalancerstatus.go │ │ │ │ │ ├── ingressportstatus.go │ │ │ │ │ ├── ingressrule.go │ │ │ │ │ ├── ingressrulevalue.go │ │ │ │ │ ├── ingressspec.go │ │ │ │ │ ├── ingressstatus.go │ │ │ │ │ ├── ingresstls.go │ │ │ │ │ ├── ipblock.go │ │ │ │ │ ├── networkpolicy.go │ │ │ │ │ ├── networkpolicyegressrule.go │ │ │ │ │ ├── networkpolicyingressrule.go │ │ │ │ │ ├── networkpolicypeer.go │ │ │ │ │ ├── networkpolicyport.go │ │ │ │ │ ├── networkpolicyspec.go │ │ │ │ │ ├── networkpolicystatus.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ ├── replicasetcondition.go │ │ │ │ │ ├── replicasetspec.go │ │ │ │ │ ├── replicasetstatus.go │ │ │ │ │ ├── rollbackconfig.go │ │ │ │ │ ├── rollingupdatedaemonset.go │ │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ │ └── scale.go │ │ │ ├── flowcontrol │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── flowschemacondition.go │ │ │ │ │ ├── flowschemaspec.go │ │ │ │ │ ├── flowschemastatus.go │ │ │ │ │ ├── groupsubject.go │ │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ │ ├── limitresponse.go │ │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ │ ├── queuingconfiguration.go │ │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ │ ├── subject.go │ │ │ │ │ └── usersubject.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── flowschemacondition.go │ │ │ │ │ ├── flowschemaspec.go │ │ │ │ │ ├── flowschemastatus.go │ │ │ │ │ ├── groupsubject.go │ │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ │ ├── limitresponse.go │ │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ │ ├── queuingconfiguration.go │ │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ │ ├── subject.go │ │ │ │ │ └── usersubject.go │ │ │ │ ├── v1beta2 │ │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── flowschemacondition.go │ │ │ │ │ ├── flowschemaspec.go │ │ │ │ │ ├── flowschemastatus.go │ │ │ │ │ ├── groupsubject.go │ │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ │ ├── limitresponse.go │ │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ │ ├── queuingconfiguration.go │ │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ │ ├── subject.go │ │ │ │ │ └── usersubject.go │ │ │ │ └── v1beta3 │ │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── flowschemacondition.go │ │ │ │ │ ├── flowschemaspec.go │ │ │ │ │ ├── flowschemastatus.go │ │ │ │ │ ├── groupsubject.go │ │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ │ ├── limitresponse.go │ │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ │ ├── queuingconfiguration.go │ │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ │ ├── subject.go │ │ │ │ │ └── usersubject.go │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ ├── meta │ │ │ │ └── v1 │ │ │ │ │ ├── condition.go │ │ │ │ │ ├── deleteoptions.go │ │ │ │ │ ├── labelselector.go │ │ │ │ │ ├── labelselectorrequirement.go │ │ │ │ │ ├── managedfieldsentry.go │ │ │ │ │ ├── objectmeta.go │ │ │ │ │ ├── ownerreference.go │ │ │ │ │ ├── preconditions.go │ │ │ │ │ ├── typemeta.go │ │ │ │ │ └── unstructured.go │ │ │ ├── networking │ │ │ │ ├── v1 │ │ │ │ │ ├── httpingresspath.go │ │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressbackend.go │ │ │ │ │ ├── ingressclass.go │ │ │ │ │ ├── ingressclassparametersreference.go │ │ │ │ │ ├── ingressclassspec.go │ │ │ │ │ ├── ingressloadbalanceringress.go │ │ │ │ │ ├── ingressloadbalancerstatus.go │ │ │ │ │ ├── ingressportstatus.go │ │ │ │ │ ├── ingressrule.go │ │ │ │ │ ├── ingressrulevalue.go │ │ │ │ │ ├── ingressservicebackend.go │ │ │ │ │ ├── ingressspec.go │ │ │ │ │ ├── ingressstatus.go │ │ │ │ │ ├── ingresstls.go │ │ │ │ │ ├── ipblock.go │ │ │ │ │ ├── networkpolicy.go │ │ │ │ │ ├── networkpolicyegressrule.go │ │ │ │ │ ├── networkpolicyingressrule.go │ │ │ │ │ ├── networkpolicypeer.go │ │ │ │ │ ├── networkpolicyport.go │ │ │ │ │ ├── networkpolicyspec.go │ │ │ │ │ ├── networkpolicystatus.go │ │ │ │ │ └── servicebackendport.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── clustercidr.go │ │ │ │ │ ├── clustercidrspec.go │ │ │ │ │ ├── ipaddress.go │ │ │ │ │ ├── ipaddressspec.go │ │ │ │ │ └── parentreference.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── httpingresspath.go │ │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressbackend.go │ │ │ │ │ ├── ingressclass.go │ │ │ │ │ ├── ingressclassparametersreference.go │ │ │ │ │ ├── ingressclassspec.go │ │ │ │ │ ├── ingressloadbalanceringress.go │ │ │ │ │ ├── ingressloadbalancerstatus.go │ │ │ │ │ ├── ingressportstatus.go │ │ │ │ │ ├── ingressrule.go │ │ │ │ │ ├── ingressrulevalue.go │ │ │ │ │ ├── ingressspec.go │ │ │ │ │ ├── ingressstatus.go │ │ │ │ │ └── ingresstls.go │ │ │ ├── node │ │ │ │ ├── v1 │ │ │ │ │ ├── overhead.go │ │ │ │ │ ├── runtimeclass.go │ │ │ │ │ └── scheduling.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── overhead.go │ │ │ │ │ ├── runtimeclass.go │ │ │ │ │ ├── runtimeclassspec.go │ │ │ │ │ └── scheduling.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── overhead.go │ │ │ │ │ ├── runtimeclass.go │ │ │ │ │ └── scheduling.go │ │ │ ├── policy │ │ │ │ ├── v1 │ │ │ │ │ ├── eviction.go │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ ├── poddisruptionbudgetspec.go │ │ │ │ │ └── poddisruptionbudgetstatus.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── allowedcsidriver.go │ │ │ │ │ ├── allowedflexvolume.go │ │ │ │ │ ├── allowedhostpath.go │ │ │ │ │ ├── eviction.go │ │ │ │ │ ├── fsgroupstrategyoptions.go │ │ │ │ │ ├── hostportrange.go │ │ │ │ │ ├── idrange.go │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ ├── poddisruptionbudgetspec.go │ │ │ │ │ ├── poddisruptionbudgetstatus.go │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ ├── podsecuritypolicyspec.go │ │ │ │ │ ├── runasgroupstrategyoptions.go │ │ │ │ │ ├── runasuserstrategyoptions.go │ │ │ │ │ ├── runtimeclassstrategyoptions.go │ │ │ │ │ ├── selinuxstrategyoptions.go │ │ │ │ │ └── supplementalgroupsstrategyoptions.go │ │ │ ├── rbac │ │ │ │ ├── v1 │ │ │ │ │ ├── aggregationrule.go │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── policyrule.go │ │ │ │ │ ├── role.go │ │ │ │ │ ├── rolebinding.go │ │ │ │ │ ├── roleref.go │ │ │ │ │ └── subject.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── aggregationrule.go │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── policyrule.go │ │ │ │ │ ├── role.go │ │ │ │ │ ├── rolebinding.go │ │ │ │ │ ├── roleref.go │ │ │ │ │ └── subject.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── aggregationrule.go │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── policyrule.go │ │ │ │ │ ├── role.go │ │ │ │ │ ├── rolebinding.go │ │ │ │ │ ├── roleref.go │ │ │ │ │ └── subject.go │ │ │ ├── resource │ │ │ │ └── v1alpha2 │ │ │ │ │ ├── allocationresult.go │ │ │ │ │ ├── podschedulingcontext.go │ │ │ │ │ ├── podschedulingcontextspec.go │ │ │ │ │ ├── podschedulingcontextstatus.go │ │ │ │ │ ├── resourceclaim.go │ │ │ │ │ ├── resourceclaimconsumerreference.go │ │ │ │ │ ├── resourceclaimparametersreference.go │ │ │ │ │ ├── resourceclaimschedulingstatus.go │ │ │ │ │ ├── resourceclaimspec.go │ │ │ │ │ ├── resourceclaimstatus.go │ │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ │ ├── resourceclaimtemplatespec.go │ │ │ │ │ ├── resourceclass.go │ │ │ │ │ ├── resourceclassparametersreference.go │ │ │ │ │ └── resourcehandle.go │ │ │ ├── scheduling │ │ │ │ ├── v1 │ │ │ │ │ └── priorityclass.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ └── priorityclass.go │ │ │ │ └── v1beta1 │ │ │ │ │ └── priorityclass.go │ │ │ └── storage │ │ │ │ ├── v1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csidriverspec.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csinodedriver.go │ │ │ │ ├── csinodespec.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── tokenrequest.go │ │ │ │ ├── volumeattachment.go │ │ │ │ ├── volumeattachmentsource.go │ │ │ │ ├── volumeattachmentspec.go │ │ │ │ ├── volumeattachmentstatus.go │ │ │ │ ├── volumeerror.go │ │ │ │ └── volumenoderesources.go │ │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── volumeattachment.go │ │ │ │ ├── volumeattachmentsource.go │ │ │ │ ├── volumeattachmentspec.go │ │ │ │ ├── volumeattachmentstatus.go │ │ │ │ └── volumeerror.go │ │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csidriverspec.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csinodedriver.go │ │ │ │ ├── csinodespec.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── tokenrequest.go │ │ │ │ ├── volumeattachment.go │ │ │ │ ├── volumeattachmentsource.go │ │ │ │ ├── volumeattachmentspec.go │ │ │ │ ├── volumeattachmentstatus.go │ │ │ │ ├── volumeerror.go │ │ │ │ └── volumenoderesources.go │ │ ├── discovery │ │ │ ├── aggregated_discovery.go │ │ │ ├── discovery_client.go │ │ │ ├── doc.go │ │ │ └── helper.go │ │ ├── kubernetes │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── import.go │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ └── typed │ │ │ │ ├── admissionregistration │ │ │ │ ├── v1 │ │ │ │ │ ├── admissionregistration_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── admissionregistration_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ │ └── validatingadmissionpolicybinding.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── admissionregistration_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ │ ├── apiserverinternal │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── apiserverinternal_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── storageversion.go │ │ │ │ ├── apps │ │ │ │ ├── v1 │ │ │ │ │ ├── apps_client.go │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ └── statefulset.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── apps_client.go │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── statefulset.go │ │ │ │ └── v1beta2 │ │ │ │ │ ├── apps_client.go │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ └── statefulset.go │ │ │ │ ├── authentication │ │ │ │ ├── v1 │ │ │ │ │ ├── authentication_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── tokenreview.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── authentication_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── selfsubjectreview.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── authentication_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── selfsubjectreview.go │ │ │ │ │ └── tokenreview.go │ │ │ │ ├── authorization │ │ │ │ ├── v1 │ │ │ │ │ ├── authorization_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ │ └── subjectaccessreview.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── authorization_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ │ └── subjectaccessreview.go │ │ │ │ ├── autoscaling │ │ │ │ ├── v1 │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ ├── v2 │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ ├── v2beta1 │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ └── v2beta2 │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ ├── batch │ │ │ │ ├── v1 │ │ │ │ │ ├── batch_client.go │ │ │ │ │ ├── cronjob.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── job.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── batch_client.go │ │ │ │ │ ├── cronjob.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── certificates │ │ │ │ ├── v1 │ │ │ │ │ ├── certificates_client.go │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── certificates_client.go │ │ │ │ │ ├── clustertrustbundle.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── certificates_client.go │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── coordination │ │ │ │ ├── v1 │ │ │ │ │ ├── coordination_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── lease.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── coordination_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── lease.go │ │ │ │ ├── core │ │ │ │ └── v1 │ │ │ │ │ ├── componentstatus.go │ │ │ │ │ ├── configmap.go │ │ │ │ │ ├── core_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpoints.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── event_expansion.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── limitrange.go │ │ │ │ │ ├── namespace.go │ │ │ │ │ ├── namespace_expansion.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── node_expansion.go │ │ │ │ │ ├── persistentvolume.go │ │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ │ ├── pod.go │ │ │ │ │ ├── pod_expansion.go │ │ │ │ │ ├── podtemplate.go │ │ │ │ │ ├── replicationcontroller.go │ │ │ │ │ ├── resourcequota.go │ │ │ │ │ ├── secret.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── service_expansion.go │ │ │ │ │ └── serviceaccount.go │ │ │ │ ├── discovery │ │ │ │ ├── v1 │ │ │ │ │ ├── discovery_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpointslice.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── discovery_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpointslice.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── events │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── events_client.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── event_expansion.go │ │ │ │ │ ├── events_client.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── extensions │ │ │ │ └── v1beta1 │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deployment_expansion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── extensions_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── networkpolicy.go │ │ │ │ │ └── replicaset.go │ │ │ │ ├── flowcontrol │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── flowcontrol_client.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── flowcontrol_client.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ ├── v1beta2 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── flowcontrol_client.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ └── v1beta3 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── flowcontrol_client.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ ├── networking │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressclass.go │ │ │ │ │ ├── networking_client.go │ │ │ │ │ └── networkpolicy.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── clustercidr.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── ipaddress.go │ │ │ │ │ └── networking_client.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressclass.go │ │ │ │ │ └── networking_client.go │ │ │ │ ├── node │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── node_client.go │ │ │ │ │ └── runtimeclass.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── node_client.go │ │ │ │ │ └── runtimeclass.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── node_client.go │ │ │ │ │ └── runtimeclass.go │ │ │ │ ├── policy │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── eviction.go │ │ │ │ │ ├── eviction_expansion.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ └── policy_client.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── eviction.go │ │ │ │ │ ├── eviction_expansion.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ └── policy_client.go │ │ │ │ ├── rbac │ │ │ │ ├── v1 │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ ├── resource │ │ │ │ └── v1alpha2 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── podschedulingcontext.go │ │ │ │ │ ├── resource_client.go │ │ │ │ │ ├── resourceclaim.go │ │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ │ └── resourceclass.go │ │ │ │ ├── scheduling │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── priorityclass.go │ │ │ │ │ └── scheduling_client.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── priorityclass.go │ │ │ │ │ └── scheduling_client.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── priorityclass.go │ │ │ │ │ └── scheduling_client.go │ │ │ │ └── storage │ │ │ │ ├── v1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── storageclass.go │ │ │ │ └── volumeattachment.go │ │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ └── volumeattachment.go │ │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── storageclass.go │ │ │ │ └── volumeattachment.go │ │ ├── openapi │ │ │ ├── OWNERS │ │ │ ├── client.go │ │ │ └── groupversion.go │ │ ├── pkg │ │ │ ├── apis │ │ │ │ └── clientauthentication │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── version │ │ │ │ ├── base.go │ │ │ │ ├── doc.go │ │ │ │ └── version.go │ │ ├── plugin │ │ │ └── pkg │ │ │ │ └── client │ │ │ │ └── auth │ │ │ │ ├── azure │ │ │ │ └── azure_stub.go │ │ │ │ └── exec │ │ │ │ ├── exec.go │ │ │ │ └── metrics.go │ │ ├── rest │ │ │ ├── OWNERS │ │ │ ├── client.go │ │ │ ├── config.go │ │ │ ├── exec.go │ │ │ ├── plugin.go │ │ │ ├── request.go │ │ │ ├── transport.go │ │ │ ├── url_utils.go │ │ │ ├── urlbackoff.go │ │ │ ├── warnings.go │ │ │ ├── watch │ │ │ │ ├── decoder.go │ │ │ │ └── encoder.go │ │ │ ├── with_retry.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── tools │ │ │ ├── auth │ │ │ │ ├── OWNERS │ │ │ │ └── clientauth.go │ │ │ ├── clientcmd │ │ │ │ ├── api │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── latest │ │ │ │ │ │ └── latest.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ ├── defaults.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── auth_loaders.go │ │ │ │ ├── client_config.go │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── flag.go │ │ │ │ ├── helpers.go │ │ │ │ ├── loader.go │ │ │ │ ├── merged_client_builder.go │ │ │ │ ├── overrides.go │ │ │ │ └── validation.go │ │ │ ├── metrics │ │ │ │ ├── OWNERS │ │ │ │ └── metrics.go │ │ │ └── reference │ │ │ │ └── ref.go │ │ ├── transport │ │ │ ├── OWNERS │ │ │ ├── cache.go │ │ │ ├── cache_go118.go │ │ │ ├── cert_rotation.go │ │ │ ├── config.go │ │ │ ├── round_trippers.go │ │ │ ├── token_source.go │ │ │ └── transport.go │ │ └── util │ │ │ ├── cert │ │ │ ├── OWNERS │ │ │ ├── cert.go │ │ │ ├── csr.go │ │ │ ├── io.go │ │ │ ├── pem.go │ │ │ └── server_inspection.go │ │ │ ├── connrotation │ │ │ └── connrotation.go │ │ │ ├── flowcontrol │ │ │ ├── backoff.go │ │ │ └── throttle.go │ │ │ ├── homedir │ │ │ └── homedir.go │ │ │ ├── keyutil │ │ │ ├── OWNERS │ │ │ └── key.go │ │ │ ├── retry │ │ │ ├── OWNERS │ │ │ └── util.go │ │ │ └── workqueue │ │ │ ├── default_rate_limiters.go │ │ │ ├── delaying_queue.go │ │ │ ├── doc.go │ │ │ ├── metrics.go │ │ │ ├── parallelizer.go │ │ │ ├── queue.go │ │ │ └── rate_limiting_queue.go │ ├── klog │ │ └── v2 │ │ │ ├── .gitignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── RELEASE.md │ │ │ ├── SECURITY.md │ │ │ ├── SECURITY_CONTACTS │ │ │ ├── code-of-conduct.md │ │ │ ├── contextual.go │ │ │ ├── exit.go │ │ │ ├── imports.go │ │ │ ├── internal │ │ │ ├── buffer │ │ │ │ └── buffer.go │ │ │ ├── clock │ │ │ │ ├── README.md │ │ │ │ └── clock.go │ │ │ ├── dbg │ │ │ │ └── dbg.go │ │ │ ├── serialize │ │ │ │ └── keyvalues.go │ │ │ └── severity │ │ │ │ └── severity.go │ │ │ ├── k8s_references.go │ │ │ ├── klog.go │ │ │ ├── klog_file.go │ │ │ ├── klog_file_others.go │ │ │ ├── klog_file_windows.go │ │ │ └── klogr.go │ ├── kube-openapi │ │ ├── LICENSE │ │ └── pkg │ │ │ ├── builder3 │ │ │ └── util │ │ │ │ └── util.go │ │ │ ├── cached │ │ │ └── cache.go │ │ │ ├── common │ │ │ ├── common.go │ │ │ ├── doc.go │ │ │ └── interfaces.go │ │ │ ├── handler3 │ │ │ └── handler.go │ │ │ ├── internal │ │ │ ├── flags.go │ │ │ ├── serialization.go │ │ │ └── third_party │ │ │ │ └── go-json-experiment │ │ │ │ └── json │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── arshal.go │ │ │ │ ├── arshal_any.go │ │ │ │ ├── arshal_default.go │ │ │ │ ├── arshal_funcs.go │ │ │ │ ├── arshal_inlined.go │ │ │ │ ├── arshal_methods.go │ │ │ │ ├── arshal_time.go │ │ │ │ ├── decode.go │ │ │ │ ├── doc.go │ │ │ │ ├── encode.go │ │ │ │ ├── errors.go │ │ │ │ ├── fields.go │ │ │ │ ├── fold.go │ │ │ │ ├── intern.go │ │ │ │ ├── pools.go │ │ │ │ ├── state.go │ │ │ │ ├── token.go │ │ │ │ └── value.go │ │ │ ├── openapiconv │ │ │ └── convert.go │ │ │ ├── schemaconv │ │ │ ├── openapi.go │ │ │ ├── proto_models.go │ │ │ └── smd.go │ │ │ ├── schemamutation │ │ │ └── walker.go │ │ │ ├── spec3 │ │ │ ├── component.go │ │ │ ├── encoding.go │ │ │ ├── example.go │ │ │ ├── external_documentation.go │ │ │ ├── fuzz.go │ │ │ ├── header.go │ │ │ ├── media_type.go │ │ │ ├── operation.go │ │ │ ├── parameter.go │ │ │ ├── path.go │ │ │ ├── request_body.go │ │ │ ├── response.go │ │ │ ├── security_scheme.go │ │ │ ├── server.go │ │ │ └── spec.go │ │ │ ├── util │ │ │ └── proto │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── document.go │ │ │ │ ├── document_v3.go │ │ │ │ └── openapi.go │ │ │ └── validation │ │ │ └── spec │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── contact_info.go │ │ │ ├── external_docs.go │ │ │ ├── fuzz.go │ │ │ ├── gnostic.go │ │ │ ├── header.go │ │ │ ├── info.go │ │ │ ├── items.go │ │ │ ├── license.go │ │ │ ├── operation.go │ │ │ ├── parameter.go │ │ │ ├── path_item.go │ │ │ ├── paths.go │ │ │ ├── ref.go │ │ │ ├── response.go │ │ │ ├── responses.go │ │ │ ├── schema.go │ │ │ ├── security_scheme.go │ │ │ ├── swagger.go │ │ │ └── tag.go │ └── utils │ │ ├── LICENSE │ │ ├── clock │ │ ├── README.md │ │ ├── clock.go │ │ └── testing │ │ │ ├── fake_clock.go │ │ │ └── simple_interval_clock.go │ │ ├── integer │ │ └── integer.go │ │ ├── internal │ │ └── third_party │ │ │ └── forked │ │ │ └── golang │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── net │ │ │ ├── ip.go │ │ │ └── parse.go │ │ ├── net │ │ ├── ipfamily.go │ │ ├── ipnet.go │ │ ├── net.go │ │ ├── parse.go │ │ └── port.go │ │ └── strings │ │ └── slices │ │ └── slices.go ├── modules.txt └── sigs.k8s.io │ ├── json │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── OWNERS │ ├── README.md │ ├── SECURITY.md │ ├── SECURITY_CONTACTS │ ├── code-of-conduct.md │ ├── doc.go │ ├── internal │ │ └── golang │ │ │ └── encoding │ │ │ └── json │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── fold.go │ │ │ ├── fuzz.go │ │ │ ├── indent.go │ │ │ ├── kubernetes_patch.go │ │ │ ├── scanner.go │ │ │ ├── stream.go │ │ │ ├── tables.go │ │ │ └── tags.go │ └── json.go │ ├── structured-merge-diff │ └── v4 │ │ ├── LICENSE │ │ ├── fieldpath │ │ ├── doc.go │ │ ├── element.go │ │ ├── fromvalue.go │ │ ├── managers.go │ │ ├── path.go │ │ ├── pathelementmap.go │ │ ├── serialize-pe.go │ │ ├── serialize.go │ │ └── set.go │ │ ├── merge │ │ ├── conflict.go │ │ └── update.go │ │ ├── schema │ │ ├── doc.go │ │ ├── elements.go │ │ ├── equals.go │ │ └── schemaschema.go │ │ ├── typed │ │ ├── doc.go │ │ ├── helpers.go │ │ ├── merge.go │ │ ├── parser.go │ │ ├── reconcile_schema.go │ │ ├── remove.go │ │ ├── tofieldset.go │ │ ├── typed.go │ │ ├── union.go │ │ └── validate.go │ │ └── value │ │ ├── allocator.go │ │ ├── doc.go │ │ ├── fields.go │ │ ├── jsontagutil.go │ │ ├── list.go │ │ ├── listreflect.go │ │ ├── listunstructured.go │ │ ├── map.go │ │ ├── mapreflect.go │ │ ├── mapunstructured.go │ │ ├── reflectcache.go │ │ ├── scalar.go │ │ ├── structreflect.go │ │ ├── value.go │ │ ├── valuereflect.go │ │ └── valueunstructured.go │ └── yaml │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── RELEASE.md │ ├── SECURITY_CONTACTS │ ├── code-of-conduct.md │ ├── fields.go │ ├── yaml.go │ └── yaml_go110.go ├── versioning.mk └── vhd ├── aib ├── AKSeImageTemplateLinux.json ├── AKSeImageTemplateWindows.json ├── ImageCreationRole.json └── ImageVnetRole.json ├── notice ├── notice.txt └── notice_windows.txt ├── packer ├── cleanup-vhd.sh ├── configure-windows-vhd-phase1.ps1 ├── configure-windows-vhd-phase2.ps1 ├── generate-windows-vhd-publishing-info.sh ├── init-variables.sh ├── install-dependencies.sh ├── packer_source.sh ├── settings-example.json ├── sysprep-phase1.ps1 ├── sysprep-phase2.ps1 ├── vhd-image-builder-ubuntu-gen2.json ├── vhd-image-builder.json ├── vhd-rg-cleanup.sh ├── windows-2004-vars.json ├── windows-2019-vars.json ├── windows-vhd-builder.json └── write-release-notes-windows.ps1 ├── publishing ├── new-sku-and-add-image-version.sh └── windows-sku-template.json └── release-notes ├── aks-engine-ubuntu-1604 ├── aks-engine-ubuntu-1604-202002_2020.02.12.txt ├── aks-engine-ubuntu-1604-202003_2020.03.10.txt ├── aks-engine-ubuntu-1604-202003_2020.03.16.txt ├── aks-engine-ubuntu-1604-202003_2020.03.19.txt ├── aks-engine-ubuntu-1604-202004_2020.04.09.txt ├── aks-engine-ubuntu-1604-202004_2020.04.21.txt ├── aks-engine-ubuntu-1604-202005_2020.05.13.txt ├── aks-engine-ubuntu-1604-202005_2020.05.29.txt ├── aks-engine-ubuntu-1604-202006_2020.06.02.txt ├── aks-engine-ubuntu-1604-202006_2020.06.22.txt ├── aks-engine-ubuntu-1604-202006_2020.06.25.txt ├── aks-engine-ubuntu-1604-202007_2020.07.24.txt ├── aks-engine-ubuntu-1604-202007_2020.08.24.txt ├── aks-engine-ubuntu-1604-202007_2020.09.08.txt ├── aks-engine-ubuntu-1604-202007_2020.09.14.txt ├── aks-engine-ubuntu-1604-202007_2020.10.06.txt ├── aks-engine-ubuntu-1604-202007_2020.10.30.txt ├── aks-engine-ubuntu-1604-202007_2020.12.02.txt ├── aks-engine-ubuntu-1604-202007_2021.01.08.txt ├── aks-engine-ubuntu-1604-202007_2021.01.28.txt ├── aks-engine-ubuntu-1604-202007_2021.02.22.txt └── aks-engine-ubuntu-1604-202007_2021.04.13.txt ├── aks-engine-ubuntu-1804 ├── aks-engine-ubuntu-1804-202002_2020.02.12.txt ├── aks-engine-ubuntu-1804-202003_2020.03.10.txt ├── aks-engine-ubuntu-1804-202003_2020.03.16.txt ├── aks-engine-ubuntu-1804-202003_2020.03.19.txt ├── aks-engine-ubuntu-1804-202004_2020.04.09.txt ├── aks-engine-ubuntu-1804-202004_2020.04.21.txt ├── aks-engine-ubuntu-1804-202005_2020.05.13.txt ├── aks-engine-ubuntu-1804-202005_2020.05.29.txt ├── aks-engine-ubuntu-1804-202006_2020.06.02.txt ├── aks-engine-ubuntu-1804-202006_2020.06.22.txt ├── aks-engine-ubuntu-1804-202006_2020.06.25.txt ├── aks-engine-ubuntu-1804-202007_2020.07.24.txt ├── aks-engine-ubuntu-1804-202007_2020.08.24.txt ├── aks-engine-ubuntu-1804-202007_2020.09.08.txt ├── aks-engine-ubuntu-1804-202007_2020.09.14.txt ├── aks-engine-ubuntu-1804-202007_2020.10.06.txt ├── aks-engine-ubuntu-1804-202007_2020.10.30.txt ├── aks-engine-ubuntu-1804-202007_2020.12.02.txt ├── aks-engine-ubuntu-1804-202007_2021.01.08.txt ├── aks-engine-ubuntu-1804-202007_2021.01.28.txt ├── aks-engine-ubuntu-1804-202007_2021.02.22.txt ├── aks-engine-ubuntu-1804-202007_2021.04.13.txt ├── aks-engine-ubuntu-1804-202007_2021.05.13.txt ├── aks-engine-ubuntu-1804-202007_2021.05.19.txt ├── aks-engine-ubuntu-1804-202007_2021.05.24.txt ├── aks-engine-ubuntu-1804-202007_2021.06.08.txt ├── aks-engine-ubuntu-1804-202007_2021.06.22.txt ├── aks-engine-ubuntu-1804-202007_2021.07.16.txt ├── aks-engine-ubuntu-1804-202007_2021.07.26.txt ├── aks-engine-ubuntu-1804-202007_2021.09.27.txt ├── aks-engine-ubuntu-1804-202007_2021.12.15.txt ├── aks-engine-ubuntu-1804-202112_2022.01.10.txt ├── aks-engine-ubuntu-1804-202112_2022.02.24.txt ├── aks-engine-ubuntu-1804-202112_2022.04.07.txt ├── aks-engine-ubuntu-1804-202112_2022.08.12.txt ├── aks-engine-ubuntu-1804-202112_2022.09.30.txt ├── aks-engine-ubuntu-1804-202112_2022.11.02.txt └── aks-engine-ubuntu-1804-202112_2023.01.10.txt ├── aks-engine-ubuntu-2004 ├── aks-engine-azurestack-ubuntu-2004_2023.032.2.txt ├── aks-engine-azurestack-ubuntu-2004_2023.079.1.txt ├── aks-engine-azurestack-ubuntu-2004_2023.116.3.txt ├── aks-engine-azurestack-ubuntu-2004_2023.206.1.txt ├── aks-engine-azurestack-ubuntu-2004_2023.242.3.txt ├── aks-engine-azurestack-ubuntu-2004_2023.296.1.txt ├── aks-engine-azurestack-ubuntu-2004_2024.019.5.txt ├── aks-engine-azurestack-ubuntu-2004_2024.032.1.txt ├── aks-engine-azurestack-ubuntu-2004_2024.311.1.txt └── aks-engine-ubuntu-2004-202301_2023.01.10.txt ├── aks-engine-ubuntu-2204 ├── aks-engine-azurestack-ubuntu-2204_2025.079.2.txt ├── aks-engine-azurestack-ubuntu-2204_2025.227.1.txt └── aks-engine-azurestack-ubuntu-2204_2025.337.1.txt ├── aks-ubuntu-1604-docker-engine ├── aks-ubuntu-1604-docker-engine_2019.03.05.txt ├── aks-ubuntu-1604-docker-engine_2019.03.15.txt ├── aks-ubuntu-1604-docker-engine_2019.03.25.txt └── aks-ubuntu-1604-docker-engine_2019.03.27.txt ├── aks-ubuntu-1604 ├── aks-ubuntu-1604-201903_2019.03.05.txt ├── aks-ubuntu-1604-201903_2019.03.15.txt ├── aks-ubuntu-1604-201903_2019.03.25.txt ├── aks-ubuntu-1604-201903_2019.03.27.txt ├── aks-ubuntu-1604-201904_2019.04.03.txt ├── aks-ubuntu-1604-201904_2019.04.08.txt ├── aks-ubuntu-1604-201904_2019.04.24.txt ├── aks-ubuntu-1604-201904_2019.04.30.txt ├── aks-ubuntu-1604-201905_2019.05.08.txt ├── aks-ubuntu-1604-201905_2019.05.16.txt ├── aks-ubuntu-1604-201906_2019.06.08.txt ├── aks-ubuntu-1604-201906_2019.06.12.txt ├── aks-ubuntu-1604-201906_2019.06.18.txt ├── aks-ubuntu-1604-201906_2019.06.20.txt ├── aks-ubuntu-1604-201906_2019.06.26.txt ├── aks-ubuntu-1604-201907_2019.07.01.txt ├── aks-ubuntu-1604-201907_2019.07.25.txt ├── aks-ubuntu-1604-201907_2019.07.29.txt ├── aks-ubuntu-1604-201907_2019.07.30.txt ├── aks-ubuntu-1604-201908_2019.08.09.txt ├── aks-ubuntu-1604-201908_2019.08.15.txt ├── aks-ubuntu-1604-201908_2019.08.21.txt ├── aks-ubuntu-1604-201908_2019.09.10.txt ├── aks-ubuntu-1604-201908_2019.09.13.txt ├── aks-ubuntu-1604-201908_2019.09.16.txt ├── aks-ubuntu-1604-201908_2019.09.19.txt ├── aks-ubuntu-1604-201908_2019.09.24.txt ├── aks-ubuntu-1604-201908_2019.10.03.txt ├── aks-ubuntu-1604-201910_2019.10.09.txt ├── aks-ubuntu-1604-201910_2019.10.15.txt ├── aks-ubuntu-1604-201910_2019.10.24.txt ├── aks-ubuntu-1604-201911_2019.11.18.txt ├── aks-ubuntu-1604-201912_2019.12.09.txt ├── aks-ubuntu-1604-201912_2019.12.11.txt ├── aks-ubuntu-1604-202001_2020.01.10.txt ├── aks-ubuntu-1604-202001_2020.01.15.txt └── aks-ubuntu-1604-202001_2020.01.30.txt ├── aks-ubuntu-1804 ├── aks-ubuntu-1804-201901_2019.03.08.txt ├── aks-ubuntu-1804-201901_2019.03.25.txt ├── aks-ubuntu-1804-201901_2019.03.27.txt ├── aks-ubuntu-1804-201904_2019.04.03.txt ├── aks-ubuntu-1804-201904_2019.04.08.txt ├── aks-ubuntu-1804-201904_2019.04.24.txt ├── aks-ubuntu-1804-201904_2019.04.30.txt ├── aks-ubuntu-1804-201905_2019.05.08.txt ├── aks-ubuntu-1804-201905_2019.05.16.txt ├── aks-ubuntu-1804-201906_2019.06.08.txt ├── aks-ubuntu-1804-201906_2019.06.12.txt ├── aks-ubuntu-1804-201906_2019.06.17.txt ├── aks-ubuntu-1804-201906_2019.06.20.txt ├── aks-ubuntu-1804-201907_2019.07.01.txt ├── aks-ubuntu-1804-201907_2019.07.25.txt ├── aks-ubuntu-1804-201907_2019.07.29.txt ├── aks-ubuntu-1804-201907_2019.07.30.txt ├── aks-ubuntu-1804-201908_2019.08.09.txt ├── aks-ubuntu-1804-201908_2019.08.15.txt ├── aks-ubuntu-1804-201908_2019.08.21.txt ├── aks-ubuntu-1804-201908_2019.09.10.txt ├── aks-ubuntu-1804-201908_2019.09.13.txt ├── aks-ubuntu-1804-201908_2019.09.16.txt ├── aks-ubuntu-1804-201908_2019.09.19.txt ├── aks-ubuntu-1804-201908_2019.09.24.txt ├── aks-ubuntu-1804-201908_2019.10.03.txt ├── aks-ubuntu-1804-201910_2019.10.09.txt ├── aks-ubuntu-1804-201910_2019.10.15.txt ├── aks-ubuntu-1804-201910_2019.10.24.txt ├── aks-ubuntu-1804-201911_2019.11.18.txt ├── aks-ubuntu-1804-201912_2019.12.09.txt ├── aks-ubuntu-1804-201912_2019.12.11.txt ├── aks-ubuntu-1804-202001_2020.01.10.txt ├── aks-ubuntu-1804-202001_2020.01.15.txt └── aks-ubuntu-1804-202001_2020.01.30.txt ├── aks-windows-2019-containerd ├── 2019-datacenter-core-azurestack-ctrd-17763.3887.20230332.txt ├── 2019-datacenter-core-azurestack-ctrd-17763.3887.20230791.txt ├── 2019-datacenter-core-azurestack-ctrd-17763.4252.20231163.txt ├── 2019-datacenter-core-azurestack-ctrd-17763.4645.20232061.txt ├── 2019-datacenter-core-azurestack-ctrd-17763.4737.20232423.txt ├── 2019-datacenter-core-azurestack-ctrd-17763.4974.20232961.txt ├── 2019-datacenter-core-azurestack-ctrd-17763.5329.20240195.txt ├── 2019-datacenter-core-azurestack-ctrd-17763.5329.20240321.txt ├── 2019-datacenter-core-azurestack-ctrd-17763.6414.20243111.txt ├── 2019-datacenter-core-azurestack-ctrd-17763.7009.20250792.txt ├── 2019-datacenter-core-azurestack-ctrd-17763.7678.20252271.txt ├── 2019-datacenter-core-azurestack-ctrd-17763.7919.20253371.txt ├── 2019-datacenter-core-ctrd-17763.1637.201210.txt ├── 2019-datacenter-core-ctrd-17763.1879.210414.txt ├── 2019-datacenter-core-ctrd-17763.1935.210520.txt ├── 2019-datacenter-core-ctrd-17763.1999.210622.txt ├── 2019-datacenter-core-ctrd-17763.2061.210716.txt ├── 2019-datacenter-core-ctrd-17763.2183.210922.txt ├── 2019-datacenter-core-ctrd-17763.2300.211204.txt ├── 2019-datacenter-core-ctrd-17763.2300.211214.txt ├── 2019-datacenter-core-ctrd-17763.2300.220111.txt ├── 2019-datacenter-core-ctrd-17763.2565.220301.txt ├── 2019-datacenter-core-ctrd-17763.2565.220407.txt ├── 2019-datacenter-core-ctrd-17763.3232.220805.txt ├── 2019-datacenter-core-ctrd-17763.3232.221003.txt ├── 2019-datacenter-core-ctrd-17763.3532.221102.txt ├── 2019-datacenter-core-ctrd-17763.3650.221213.txt └── 2019-datacenter-core-smalldisk-17763.2213.210927.txt └── aks-windows ├── 2019-datacenter-core-azurestack-smalldisk-17763.3887.20230332.txt ├── 2019-datacenter-core-smalldisk-17763.1039.2000220.txt ├── 2019-datacenter-core-smalldisk-17763.1075.200227.txt ├── 2019-datacenter-core-smalldisk-17763.1098.200315.txt ├── 2019-datacenter-core-smalldisk-17763.1098.200409.txt ├── 2019-datacenter-core-smalldisk-17763.1158.200421.txt ├── 2019-datacenter-core-smalldisk-17763.1217.200513.txt ├── 2019-datacenter-core-smalldisk-17763.1217.200603.txt ├── 2019-datacenter-core-smalldisk-17763.1282.200610.txt ├── 2019-datacenter-core-smalldisk-17763.1282.200625.txt ├── 2019-datacenter-core-smalldisk-17763.1282.200702.txt ├── 2019-datacenter-core-smalldisk-17763.1339.200716.txt ├── 2019-datacenter-core-smalldisk-17763.1397.200820.txt ├── 2019-datacenter-core-smalldisk-17763.1397.200917.txt ├── 2019-datacenter-core-smalldisk-17763.1397.201006.txt ├── 2019-datacenter-core-smalldisk-17763.1554.201109.txt ├── 2019-datacenter-core-smalldisk-17763.1577.201112.txt ├── 2019-datacenter-core-smalldisk-17763.1577.201202txt ├── 2019-datacenter-core-smalldisk-17763.1637.2012040632.txt ├── 2019-datacenter-core-smalldisk-17763.1637.210111.txt ├── 2019-datacenter-core-smalldisk-17763.1697.210223.txt ├── 2019-datacenter-core-smalldisk-17763.1817.210317.txt ├── 2019-datacenter-core-smalldisk-17763.2183.210922.txt ├── 2019-datacenter-core-smalldisk-17763.2213.210927.txt ├── 2019-datacenter-core-smalldisk-17763.2300.211204.txt ├── 2019-datacenter-core-smalldisk-17763.2300.211214.txt ├── 2019-datacenter-core-smalldisk-17763.2300.220111.txt ├── 2019-datacenter-core-smalldisk-17763.2565.220301.txt ├── 2019-datacenter-core-smalldisk-17763.2565.220408.txt ├── 2019-datacenter-core-smalldisk-17763.3232.220805.txt ├── 2019-datacenter-core-smalldisk-17763.3232.221003.txt ├── 2019-datacenter-core-smalldisk-17763.3532.221102.txt ├── 2019-datacenter-core-smalldisk-17763.3650.221213.txt ├── 2019-datacenter-core-smalldisk-17763.737.190923.txt ├── 2019-datacenter-core-smalldisk-17763.805.191016.txt ├── 2019-datacenter-core-smalldisk-17763.805.191024.txt ├── 2019-datacenter-core-smalldisk-17763.864.191209.txt ├── 2019-datacenter-core-smalldisk-17763.864.191211.txt ├── 2019-datacenter-core-smalldisk-17763.973.200123.txt ├── 2019-datacenter-core-smalldisk-17763.973.200213.txt ├── 2109-datacenter-core-smalldisk-17763.1697.210129.txt ├── 2109-datacenter-core-smalldisk-17763.1879.210414.txt ├── 2109-datacenter-core-smalldisk-17763.1935.210520.txt ├── 2109-datacenter-core-smalldisk-17763.1999.210622.txt └── 2109-datacenter-core-smalldisk-17763.2061.210716.txt /.chglog/CHANGELOG.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/.chglog/CHANGELOG.tpl.md -------------------------------------------------------------------------------- /.chglog/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/.chglog/config.yml -------------------------------------------------------------------------------- /.devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/.devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/policies/advanced-security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/.github/policies/advanced-security.yml -------------------------------------------------------------------------------- /.github/policies/branch-protection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/.github/policies/branch-protection.yml -------------------------------------------------------------------------------- /.github/semantic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/.github/semantic.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/.github/workflows/nightly-build.yaml -------------------------------------------------------------------------------- /.github/workflows/pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/.github/workflows/pr.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test-upgrade.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/.github/workflows/test-upgrade.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.pipelines/e2e-job-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/.pipelines/e2e-job-template.yaml -------------------------------------------------------------------------------- /.pipelines/e2e-step-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/.pipelines/e2e-step-template.yaml -------------------------------------------------------------------------------- /.pipelines/marketplace-sku.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/.pipelines/marketplace-sku.yaml -------------------------------------------------------------------------------- /.pipelines/pr-e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/.pipelines/pr-e2e.yaml -------------------------------------------------------------------------------- /.pipelines/vhd-builder-windows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/.pipelines/vhd-builder-windows.yaml -------------------------------------------------------------------------------- /.pipelines/vhd-builder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/.pipelines/vhd-builder.yaml -------------------------------------------------------------------------------- /.pipelines/vhd-publish-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/.pipelines/vhd-publish-template.yaml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - jadarsie 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /cmd/addpool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/addpool.go -------------------------------------------------------------------------------- /cmd/addpool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/addpool_test.go -------------------------------------------------------------------------------- /cmd/deploy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/deploy.go -------------------------------------------------------------------------------- /cmd/deploy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/deploy_test.go -------------------------------------------------------------------------------- /cmd/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/doc.go -------------------------------------------------------------------------------- /cmd/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/generate.go -------------------------------------------------------------------------------- /cmd/generate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/generate_test.go -------------------------------------------------------------------------------- /cmd/get_logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/get_logs.go -------------------------------------------------------------------------------- /cmd/get_logs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/get_logs_test.go -------------------------------------------------------------------------------- /cmd/get_versions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/get_versions.go -------------------------------------------------------------------------------- /cmd/get_versions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/get_versions_test.go -------------------------------------------------------------------------------- /cmd/orchestrators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/orchestrators.go -------------------------------------------------------------------------------- /cmd/orchestrators_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/orchestrators_test.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/root_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/root_test.go -------------------------------------------------------------------------------- /cmd/rotate_certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/rotate_certs.go -------------------------------------------------------------------------------- /cmd/rotate_certs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/rotate_certs_test.go -------------------------------------------------------------------------------- /cmd/rotatecerts/arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/rotatecerts/arm.go -------------------------------------------------------------------------------- /cmd/rotatecerts/internal/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/rotatecerts/internal/interfaces.go -------------------------------------------------------------------------------- /cmd/rotatecerts/operations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/rotatecerts/operations.go -------------------------------------------------------------------------------- /cmd/rotatecerts/operations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/rotatecerts/operations_test.go -------------------------------------------------------------------------------- /cmd/rotatecerts/wait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/rotatecerts/wait.go -------------------------------------------------------------------------------- /cmd/rotatecerts/wait_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/rotatecerts/wait_test.go -------------------------------------------------------------------------------- /cmd/scale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/scale.go -------------------------------------------------------------------------------- /cmd/scale_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/scale_test.go -------------------------------------------------------------------------------- /cmd/upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/upgrade.go -------------------------------------------------------------------------------- /cmd/upgrade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/upgrade_test.go -------------------------------------------------------------------------------- /cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/version.go -------------------------------------------------------------------------------- /cmd/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/cmd/version_test.go -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/community/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/community/README.md -------------------------------------------------------------------------------- /docs/community/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/community/code-of-conduct.md -------------------------------------------------------------------------------- /docs/community/developer-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/community/developer-guide.md -------------------------------------------------------------------------------- /docs/community/e2e-output-example.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/community/e2e-output-example.log -------------------------------------------------------------------------------- /docs/community/example-launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/community/example-launch.json -------------------------------------------------------------------------------- /docs/community/planning-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/community/planning-process.md -------------------------------------------------------------------------------- /docs/community/release-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/community/release-checklist.md -------------------------------------------------------------------------------- /docs/community/running-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/community/running-tests.md -------------------------------------------------------------------------------- /docs/design/cert-rotation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/design/cert-rotation.md -------------------------------------------------------------------------------- /docs/design/custom-container-images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/design/custom-container-images.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/howto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/howto/README.md -------------------------------------------------------------------------------- /docs/howto/building-vhds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/howto/building-vhds.md -------------------------------------------------------------------------------- /docs/howto/mixed-cluster-ingress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/howto/mixed-cluster-ingress.md -------------------------------------------------------------------------------- /docs/howto/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/howto/troubleshooting.md -------------------------------------------------------------------------------- /docs/static/img/acrblade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/acrblade.png -------------------------------------------------------------------------------- /docs/static/img/architectures.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/architectures.vsdx -------------------------------------------------------------------------------- /docs/static/img/attach_archives.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/attach_archives.png -------------------------------------------------------------------------------- /docs/static/img/cosmos-etcd-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/cosmos-etcd-account.png -------------------------------------------------------------------------------- /docs/static/img/debug-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/debug-code.png -------------------------------------------------------------------------------- /docs/static/img/debug-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/debug-test.png -------------------------------------------------------------------------------- /docs/static/img/deployfirstapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/deployfirstapp.png -------------------------------------------------------------------------------- /docs/static/img/dockercomposescale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/dockercomposescale.png -------------------------------------------------------------------------------- /docs/static/img/dockerinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/dockerinfo.png -------------------------------------------------------------------------------- /docs/static/img/dockernodels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/dockernodels.png -------------------------------------------------------------------------------- /docs/static/img/dockerps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/dockerps.png -------------------------------------------------------------------------------- /docs/static/img/dockerserviceps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/dockerserviceps.png -------------------------------------------------------------------------------- /docs/static/img/dockerservicescale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/dockerservicescale.png -------------------------------------------------------------------------------- /docs/static/img/draft_new_release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/draft_new_release.png -------------------------------------------------------------------------------- /docs/static/img/hybrid-trafficflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/hybrid-trafficflow.png -------------------------------------------------------------------------------- /docs/static/img/install-go-extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/install-go-extension.png -------------------------------------------------------------------------------- /docs/static/img/kubernetes-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/kubernetes-dashboard.png -------------------------------------------------------------------------------- /docs/static/img/kubernetes-nginx1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/kubernetes-nginx1.png -------------------------------------------------------------------------------- /docs/static/img/kubernetes-nginx2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/kubernetes-nginx2.png -------------------------------------------------------------------------------- /docs/static/img/kubernetes-nginx3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/kubernetes-nginx3.png -------------------------------------------------------------------------------- /docs/static/img/kubernetes-nginx4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/kubernetes-nginx4.png -------------------------------------------------------------------------------- /docs/static/img/kubernetes-remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/kubernetes-remote.png -------------------------------------------------------------------------------- /docs/static/img/kubernetes-windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/kubernetes-windows.png -------------------------------------------------------------------------------- /docs/static/img/kubernetes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/kubernetes.png -------------------------------------------------------------------------------- /docs/static/img/newapp-status.pn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/newapp-status.pn.png -------------------------------------------------------------------------------- /docs/static/img/rdptunnels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/rdptunnels.png -------------------------------------------------------------------------------- /docs/static/img/release_notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/release_notes.png -------------------------------------------------------------------------------- /docs/static/img/simpleweb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/static/img/simpleweb.png -------------------------------------------------------------------------------- /docs/topics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/README.md -------------------------------------------------------------------------------- /docs/topics/aad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/aad.md -------------------------------------------------------------------------------- /docs/topics/addpool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/addpool.md -------------------------------------------------------------------------------- /docs/topics/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/architecture.md -------------------------------------------------------------------------------- /docs/topics/azure-api-throttling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/azure-api-throttling.md -------------------------------------------------------------------------------- /docs/topics/azure-stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/azure-stack.md -------------------------------------------------------------------------------- /docs/topics/clusterdefinitions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/clusterdefinitions.md -------------------------------------------------------------------------------- /docs/topics/coredns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/coredns.md -------------------------------------------------------------------------------- /docs/topics/creating_new_clusters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/creating_new_clusters.md -------------------------------------------------------------------------------- /docs/topics/csi-proxy-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/csi-proxy-windows.md -------------------------------------------------------------------------------- /docs/topics/extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/extensions.md -------------------------------------------------------------------------------- /docs/topics/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/features.md -------------------------------------------------------------------------------- /docs/topics/get-logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/get-logs.md -------------------------------------------------------------------------------- /docs/topics/gpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/gpu.md -------------------------------------------------------------------------------- /docs/topics/hybrid-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/hybrid-environment.md -------------------------------------------------------------------------------- /docs/topics/keyvault-secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/keyvault-secrets.md -------------------------------------------------------------------------------- /docs/topics/monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/monitoring.md -------------------------------------------------------------------------------- /docs/topics/pod-security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/pod-security.md -------------------------------------------------------------------------------- /docs/topics/proxy-servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/proxy-servers.md -------------------------------------------------------------------------------- /docs/topics/rotate-certs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/rotate-certs.md -------------------------------------------------------------------------------- /docs/topics/scale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/scale.md -------------------------------------------------------------------------------- /docs/topics/seccomp-profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/seccomp-profile.md -------------------------------------------------------------------------------- /docs/topics/service-principals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/service-principals.md -------------------------------------------------------------------------------- /docs/topics/sgx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/sgx.md -------------------------------------------------------------------------------- /docs/topics/sgx/device-plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/sgx/device-plugin.yaml -------------------------------------------------------------------------------- /docs/topics/telemetry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/telemetry.md -------------------------------------------------------------------------------- /docs/topics/ubuntu-stig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/ubuntu-stig.md -------------------------------------------------------------------------------- /docs/topics/upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/upgrade.md -------------------------------------------------------------------------------- /docs/topics/windows-and-kubernetes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/windows-and-kubernetes.md -------------------------------------------------------------------------------- /docs/topics/windows-dsr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/windows-dsr.md -------------------------------------------------------------------------------- /docs/topics/windows-vhd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/windows-vhd.md -------------------------------------------------------------------------------- /docs/topics/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/topics/windows.md -------------------------------------------------------------------------------- /docs/tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/tutorials/README.md -------------------------------------------------------------------------------- /docs/tutorials/cli-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/tutorials/cli-overview.md -------------------------------------------------------------------------------- /docs/tutorials/custom-vnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/tutorials/custom-vnet.md -------------------------------------------------------------------------------- /docs/tutorials/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/docs/tutorials/quickstart.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/addons/appgw-ingress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/addons/appgw-ingress/README.md -------------------------------------------------------------------------------- /examples/addons/azure-policy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/addons/azure-policy/README.md -------------------------------------------------------------------------------- /examples/addpool/addpool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/addpool/addpool.sh -------------------------------------------------------------------------------- /examples/addpool/agentpool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/addpool/agentpool.json -------------------------------------------------------------------------------- /examples/addpool/apimodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/addpool/apimodel.json -------------------------------------------------------------------------------- /examples/agents-only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/agents-only.json -------------------------------------------------------------------------------- /examples/azure-stack/migratepv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/azure-stack/migratepv.sh -------------------------------------------------------------------------------- /examples/cosmos-etcd/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/cosmos-etcd/readme.md -------------------------------------------------------------------------------- /examples/custom-image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/custom-image.json -------------------------------------------------------------------------------- /examples/custom-shared-image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/custom-shared-image.json -------------------------------------------------------------------------------- /examples/customfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/customfiles/README.md -------------------------------------------------------------------------------- /examples/disks-ephemeral/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/disks-ephemeral/README.md -------------------------------------------------------------------------------- /examples/disks-managed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/disks-managed/README.md -------------------------------------------------------------------------------- /examples/disks-storageaccount/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/disks-storageaccount/README.md -------------------------------------------------------------------------------- /examples/dualstack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/dualstack/README.md -------------------------------------------------------------------------------- /examples/dualstack/kubernetes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/dualstack/kubernetes.json -------------------------------------------------------------------------------- /examples/extensions/kubernetes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/extensions/kubernetes.json -------------------------------------------------------------------------------- /examples/extensions/kubernetes.oms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/extensions/kubernetes.oms.json -------------------------------------------------------------------------------- /examples/flatcar/kubernetes-flatcar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/flatcar/kubernetes-flatcar.json -------------------------------------------------------------------------------- /examples/ipv6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/ipv6/README.md -------------------------------------------------------------------------------- /examples/ipv6/kubernetes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/ipv6/kubernetes.json -------------------------------------------------------------------------------- /examples/ipvs/kubernetes-msi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/ipvs/kubernetes-msi.json -------------------------------------------------------------------------------- /examples/keyvault-params/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/keyvault-params/README.md -------------------------------------------------------------------------------- /examples/keyvault-params/kubernetes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/keyvault-params/kubernetes.json -------------------------------------------------------------------------------- /examples/keyvaultcerts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/keyvaultcerts/README.md -------------------------------------------------------------------------------- /examples/keyvaultcerts/kubernetes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/keyvaultcerts/kubernetes.json -------------------------------------------------------------------------------- /examples/kubernetes-D2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/kubernetes-D2.json -------------------------------------------------------------------------------- /examples/kubernetes-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/kubernetes-config/README.md -------------------------------------------------------------------------------- /examples/kubernetes-gpu/kubernetes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/kubernetes-gpu/kubernetes.json -------------------------------------------------------------------------------- /examples/kubernetes-labels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/kubernetes-labels/README.md -------------------------------------------------------------------------------- /examples/kubernetes-non-vhd-distros.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/kubernetes-non-vhd-distros.json -------------------------------------------------------------------------------- /examples/kubernetes-vmss/kubernetes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/kubernetes-vmss/kubernetes.json -------------------------------------------------------------------------------- /examples/kubernetes-zones/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/kubernetes-zones/README.md -------------------------------------------------------------------------------- /examples/kubernetes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/kubernetes.json -------------------------------------------------------------------------------- /examples/largeclusters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/largeclusters/README.md -------------------------------------------------------------------------------- /examples/largeclusters/kubernetes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/largeclusters/kubernetes.json -------------------------------------------------------------------------------- /examples/multiple-nodepools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/multiple-nodepools/README.md -------------------------------------------------------------------------------- /examples/networkplugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/networkplugin/README.md -------------------------------------------------------------------------------- /examples/networkpolicy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/networkpolicy/README.md -------------------------------------------------------------------------------- /examples/no_outbound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/no_outbound.json -------------------------------------------------------------------------------- /examples/service-mesh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/service-mesh/README.md -------------------------------------------------------------------------------- /examples/service-mesh/istio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/service-mesh/istio.json -------------------------------------------------------------------------------- /examples/ubuntu-1804/kubernetes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/ubuntu-1804/kubernetes.json -------------------------------------------------------------------------------- /examples/vnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/vnet/README.md -------------------------------------------------------------------------------- /examples/vnet/kubernetesvnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/vnet/kubernetesvnet.json -------------------------------------------------------------------------------- /examples/vnet/vnetarmtemplate/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/vnet/vnetarmtemplate/deploy.ps1 -------------------------------------------------------------------------------- /examples/windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/windows/README.md -------------------------------------------------------------------------------- /examples/windows/kubernetes-D2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/windows/kubernetes-D2.json -------------------------------------------------------------------------------- /examples/windows/kubernetes-hybrid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/windows/kubernetes-hybrid.json -------------------------------------------------------------------------------- /examples/windows/kubernetes-hyperv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/windows/kubernetes-hyperv.json -------------------------------------------------------------------------------- /examples/windows/kubernetes-sadisks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/windows/kubernetes-sadisks.json -------------------------------------------------------------------------------- /examples/windows/kubernetes-wincni.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/windows/kubernetes-wincni.json -------------------------------------------------------------------------------- /examples/windows/kubernetes-windsr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/windows/kubernetes-windsr.json -------------------------------------------------------------------------------- /examples/windows/kubernetes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/examples/windows/kubernetes.json -------------------------------------------------------------------------------- /extensions/choco/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/extensions/choco/README.md -------------------------------------------------------------------------------- /extensions/choco/v1/startChocolatey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/extensions/choco/v1/startChocolatey.ps1 -------------------------------------------------------------------------------- /extensions/choco/v1/supported-orchestrators.json: -------------------------------------------------------------------------------- 1 | ["Kubernetes"] 2 | -------------------------------------------------------------------------------- /extensions/choco/v1/template-link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/extensions/choco/v1/template-link.json -------------------------------------------------------------------------------- /extensions/choco/v1/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/extensions/choco/v1/template.json -------------------------------------------------------------------------------- /extensions/dnsupdate/v1/register-dns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/extensions/dnsupdate/v1/register-dns.sh -------------------------------------------------------------------------------- /extensions/hello-world-k8s/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/extensions/hello-world-k8s/README.md -------------------------------------------------------------------------------- /extensions/hello-world-k8s/v1/supported-orchestrators.json: -------------------------------------------------------------------------------- 1 | ["Kubernetes"] -------------------------------------------------------------------------------- /extensions/hello-world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/extensions/hello-world/README.md -------------------------------------------------------------------------------- /extensions/hello-world/v1/hello.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/extensions/hello-world/v1/hello.sh -------------------------------------------------------------------------------- /extensions/hello-world/v1/supported-orchestrators.json: -------------------------------------------------------------------------------- 1 | ["Kubernetes"] 2 | -------------------------------------------------------------------------------- /extensions/prometheus-grafana-k8s/v1/supported-orchestrators.json: -------------------------------------------------------------------------------- 1 | ["Kubernetes"] -------------------------------------------------------------------------------- /extensions/windows-patches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/extensions/windows-patches/README.md -------------------------------------------------------------------------------- /extensions/windows-patches/v1/supported-orchestrators.json: -------------------------------------------------------------------------------- 1 | ["Kubernetes"] 2 | -------------------------------------------------------------------------------- /extensions/winrm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/extensions/winrm/README.md -------------------------------------------------------------------------------- /extensions/winrm/v1/enableWinrm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/extensions/winrm/v1/enableWinrm.ps1 -------------------------------------------------------------------------------- /extensions/winrm/v1/supported-orchestrators.json: -------------------------------------------------------------------------------- 1 | ["Kubernetes"] 2 | -------------------------------------------------------------------------------- /extensions/winrm/v1/template-link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/extensions/winrm/v1/template-link.json -------------------------------------------------------------------------------- /extensions/winrm/v1/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/extensions/winrm/v1/template.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/go.sum -------------------------------------------------------------------------------- /hack/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/hack/tools/Makefile -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/main.go -------------------------------------------------------------------------------- /makedev.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/makedev.ps1 -------------------------------------------------------------------------------- /packer.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/packer.mk -------------------------------------------------------------------------------- /parts/agentoutputs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/agentoutputs.t -------------------------------------------------------------------------------- /parts/agentparams.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/agentparams.t -------------------------------------------------------------------------------- /parts/iaasoutputs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/iaasoutputs.t -------------------------------------------------------------------------------- /parts/k8s/addons/aad-pod-identity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/addons/aad-pod-identity.yaml -------------------------------------------------------------------------------- /parts/k8s/addons/antrea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/addons/antrea.yaml -------------------------------------------------------------------------------- /parts/k8s/addons/arc-onboarding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/addons/arc-onboarding.yaml -------------------------------------------------------------------------------- /parts/k8s/addons/audit-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/addons/audit-policy.yaml -------------------------------------------------------------------------------- /parts/k8s/addons/calico.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/addons/calico.yaml -------------------------------------------------------------------------------- /parts/k8s/addons/cilium.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/addons/cilium.yaml -------------------------------------------------------------------------------- /parts/k8s/addons/cloud-node-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/addons/cloud-node-manager.yaml -------------------------------------------------------------------------------- /parts/k8s/addons/cluster-autoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/addons/cluster-autoscaler.yaml -------------------------------------------------------------------------------- /parts/k8s/addons/coredns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/addons/coredns.yaml -------------------------------------------------------------------------------- /parts/k8s/addons/flannel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/addons/flannel.yaml -------------------------------------------------------------------------------- /parts/k8s/addons/ip-masq-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/addons/ip-masq-agent.yaml -------------------------------------------------------------------------------- /parts/k8s/addons/kube-dns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/addons/kube-dns.yaml -------------------------------------------------------------------------------- /parts/k8s/addons/kube-proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/addons/kube-proxy.yaml -------------------------------------------------------------------------------- /parts/k8s/addons/metrics-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/addons/metrics-server.yaml -------------------------------------------------------------------------------- /parts/k8s/addons/smb-flexvolume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/addons/smb-flexvolume.yaml -------------------------------------------------------------------------------- /parts/k8s/addons/tiller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/addons/tiller.yaml -------------------------------------------------------------------------------- /parts/k8s/armparameters.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/armparameters.t -------------------------------------------------------------------------------- /parts/k8s/cloud-init/artifacts/apt-preferences: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parts/k8s/cloud-init/artifacts/cis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/cloud-init/artifacts/cis.sh -------------------------------------------------------------------------------- /parts/k8s/cloud-init/artifacts/docker_clear_mount_propagation_flags.conf: -------------------------------------------------------------------------------- 1 | [Service] 2 | MountFlags=shared 3 | #EOF 4 | -------------------------------------------------------------------------------- /parts/k8s/cloud-init/artifacts/etc-issue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/cloud-init/artifacts/etc-issue -------------------------------------------------------------------------------- /parts/k8s/cloud-init/artifacts/pam-d-su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/cloud-init/artifacts/pam-d-su -------------------------------------------------------------------------------- /parts/k8s/cloud-init/nodecustomdata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/cloud-init/nodecustomdata.yml -------------------------------------------------------------------------------- /parts/k8s/containerdtemplate.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/containerdtemplate.toml -------------------------------------------------------------------------------- /parts/k8s/kubeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/kubeconfig.json -------------------------------------------------------------------------------- /parts/k8s/kubernetesparams.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/kubernetesparams.t -------------------------------------------------------------------------------- /parts/k8s/kuberneteswindowsfunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/kuberneteswindowsfunctions.ps1 -------------------------------------------------------------------------------- /parts/k8s/kuberneteswindowssetup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/kuberneteswindowssetup.ps1 -------------------------------------------------------------------------------- /parts/k8s/rotate-certs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/rotate-certs.ps1 -------------------------------------------------------------------------------- /parts/k8s/rotate-certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/rotate-certs.sh -------------------------------------------------------------------------------- /parts/k8s/windowsazurecnifunc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/windowsazurecnifunc.ps1 -------------------------------------------------------------------------------- /parts/k8s/windowsazurecnifunc.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/windowsazurecnifunc.tests.ps1 -------------------------------------------------------------------------------- /parts/k8s/windowscnifunc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/windowscnifunc.ps1 -------------------------------------------------------------------------------- /parts/k8s/windowsconfigfunc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/windowsconfigfunc.ps1 -------------------------------------------------------------------------------- /parts/k8s/windowscontainerdfunc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/windowscontainerdfunc.ps1 -------------------------------------------------------------------------------- /parts/k8s/windowscsiproxyfunc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/windowscsiproxyfunc.ps1 -------------------------------------------------------------------------------- /parts/k8s/windowsinstallopensshfunc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/windowsinstallopensshfunc.ps1 -------------------------------------------------------------------------------- /parts/k8s/windowskubeletfunc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/k8s/windowskubeletfunc.ps1 -------------------------------------------------------------------------------- /parts/masteroutputs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/masteroutputs.t -------------------------------------------------------------------------------- /parts/masterparams.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/masterparams.t -------------------------------------------------------------------------------- /parts/windowsparams.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/parts/windowsparams.t -------------------------------------------------------------------------------- /pkg/api/addons.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/addons.go -------------------------------------------------------------------------------- /pkg/api/addons_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/addons_test.go -------------------------------------------------------------------------------- /pkg/api/apiloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/apiloader.go -------------------------------------------------------------------------------- /pkg/api/apiloader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/apiloader_test.go -------------------------------------------------------------------------------- /pkg/api/azenvtypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/azenvtypes.go -------------------------------------------------------------------------------- /pkg/api/azenvtypes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/azenvtypes_test.go -------------------------------------------------------------------------------- /pkg/api/common/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/common/const.go -------------------------------------------------------------------------------- /pkg/api/common/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/common/doc.go -------------------------------------------------------------------------------- /pkg/api/common/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/common/flags.go -------------------------------------------------------------------------------- /pkg/api/common/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/common/flags_test.go -------------------------------------------------------------------------------- /pkg/api/common/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/common/helper.go -------------------------------------------------------------------------------- /pkg/api/common/helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/common/helper_test.go -------------------------------------------------------------------------------- /pkg/api/common/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/common/net.go -------------------------------------------------------------------------------- /pkg/api/common/net_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/common/net_test.go -------------------------------------------------------------------------------- /pkg/api/common/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/common/types.go -------------------------------------------------------------------------------- /pkg/api/common/versions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/common/versions.go -------------------------------------------------------------------------------- /pkg/api/common/versions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/common/versions_test.go -------------------------------------------------------------------------------- /pkg/api/components.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/components.go -------------------------------------------------------------------------------- /pkg/api/components_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/components_test.go -------------------------------------------------------------------------------- /pkg/api/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/const.go -------------------------------------------------------------------------------- /pkg/api/converterfromapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/converterfromapi.go -------------------------------------------------------------------------------- /pkg/api/converterfromapi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/converterfromapi_test.go -------------------------------------------------------------------------------- /pkg/api/convertertoapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/convertertoapi.go -------------------------------------------------------------------------------- /pkg/api/convertertoapi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/convertertoapi_test.go -------------------------------------------------------------------------------- /pkg/api/defaults-apiserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/defaults-apiserver.go -------------------------------------------------------------------------------- /pkg/api/defaults-apiserver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/defaults-apiserver_test.go -------------------------------------------------------------------------------- /pkg/api/defaults-controller-manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/defaults-controller-manager.go -------------------------------------------------------------------------------- /pkg/api/defaults-custom-cloud-profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/defaults-custom-cloud-profile.go -------------------------------------------------------------------------------- /pkg/api/defaults-kubelet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/defaults-kubelet.go -------------------------------------------------------------------------------- /pkg/api/defaults-kubelet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/defaults-kubelet_test.go -------------------------------------------------------------------------------- /pkg/api/defaults-scheduler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/defaults-scheduler.go -------------------------------------------------------------------------------- /pkg/api/defaults-scheduler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/defaults-scheduler_test.go -------------------------------------------------------------------------------- /pkg/api/defaults-sysctld.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/defaults-sysctld.go -------------------------------------------------------------------------------- /pkg/api/defaults-sysctld_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/defaults-sysctld_test.go -------------------------------------------------------------------------------- /pkg/api/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/defaults.go -------------------------------------------------------------------------------- /pkg/api/defaults_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/defaults_test.go -------------------------------------------------------------------------------- /pkg/api/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/doc.go -------------------------------------------------------------------------------- /pkg/api/k8s_versions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/k8s_versions.go -------------------------------------------------------------------------------- /pkg/api/k8s_versions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/k8s_versions_test.go -------------------------------------------------------------------------------- /pkg/api/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/mocks.go -------------------------------------------------------------------------------- /pkg/api/orchestrators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/orchestrators.go -------------------------------------------------------------------------------- /pkg/api/orchestrators_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/orchestrators_test.go -------------------------------------------------------------------------------- /pkg/api/strictjson.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/strictjson.go -------------------------------------------------------------------------------- /pkg/api/strictjson_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/strictjson_test.go -------------------------------------------------------------------------------- /pkg/api/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/types.go -------------------------------------------------------------------------------- /pkg/api/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/types_test.go -------------------------------------------------------------------------------- /pkg/api/vlabs/azenvtypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/vlabs/azenvtypes.go -------------------------------------------------------------------------------- /pkg/api/vlabs/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/vlabs/const.go -------------------------------------------------------------------------------- /pkg/api/vlabs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/vlabs/doc.go -------------------------------------------------------------------------------- /pkg/api/vlabs/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/vlabs/merge.go -------------------------------------------------------------------------------- /pkg/api/vlabs/merge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/vlabs/merge_test.go -------------------------------------------------------------------------------- /pkg/api/vlabs/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/vlabs/types.go -------------------------------------------------------------------------------- /pkg/api/vlabs/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/vlabs/types_test.go -------------------------------------------------------------------------------- /pkg/api/vlabs/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/vlabs/validate.go -------------------------------------------------------------------------------- /pkg/api/vlabs/validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/api/vlabs/validate_test.go -------------------------------------------------------------------------------- /pkg/armhelpers/azureclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/azureclient.go -------------------------------------------------------------------------------- /pkg/armhelpers/compute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/compute.go -------------------------------------------------------------------------------- /pkg/armhelpers/compute_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/compute_test.go -------------------------------------------------------------------------------- /pkg/armhelpers/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/const.go -------------------------------------------------------------------------------- /pkg/armhelpers/credentials.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/credentials.go -------------------------------------------------------------------------------- /pkg/armhelpers/deploymentError.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/deploymentError.go -------------------------------------------------------------------------------- /pkg/armhelpers/deploymentError_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/deploymentError_test.go -------------------------------------------------------------------------------- /pkg/armhelpers/deploymentOperations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/deploymentOperations.go -------------------------------------------------------------------------------- /pkg/armhelpers/deployment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/deployment_test.go -------------------------------------------------------------------------------- /pkg/armhelpers/deployments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/deployments.go -------------------------------------------------------------------------------- /pkg/armhelpers/disk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/disk.go -------------------------------------------------------------------------------- /pkg/armhelpers/disk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/disk_test.go -------------------------------------------------------------------------------- /pkg/armhelpers/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/doc.go -------------------------------------------------------------------------------- /pkg/armhelpers/graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/graph.go -------------------------------------------------------------------------------- /pkg/armhelpers/groupsclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/groupsclient.go -------------------------------------------------------------------------------- /pkg/armhelpers/httpMockClient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/httpMockClient.go -------------------------------------------------------------------------------- /pkg/armhelpers/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/interfaces.go -------------------------------------------------------------------------------- /pkg/armhelpers/mockclients.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/mockclients.go -------------------------------------------------------------------------------- /pkg/armhelpers/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/network.go -------------------------------------------------------------------------------- /pkg/armhelpers/network_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/network_test.go -------------------------------------------------------------------------------- /pkg/armhelpers/providers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/providers.go -------------------------------------------------------------------------------- /pkg/armhelpers/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/storage.go -------------------------------------------------------------------------------- /pkg/armhelpers/support_validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/support_validator.go -------------------------------------------------------------------------------- /pkg/armhelpers/support_validator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/support_validator_test.go -------------------------------------------------------------------------------- /pkg/armhelpers/tenantid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/tenantid.go -------------------------------------------------------------------------------- /pkg/armhelpers/tenantid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/tenantid_test.go -------------------------------------------------------------------------------- /pkg/armhelpers/testserver/testServer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/testserver/testServer.go -------------------------------------------------------------------------------- /pkg/armhelpers/utils/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/utils/util.go -------------------------------------------------------------------------------- /pkg/armhelpers/utils/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/utils/util_test.go -------------------------------------------------------------------------------- /pkg/armhelpers/vmImage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/vmImage.go -------------------------------------------------------------------------------- /pkg/armhelpers/vmImage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/armhelpers/vmImage_test.go -------------------------------------------------------------------------------- /pkg/engine/applicationgateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/applicationgateway.go -------------------------------------------------------------------------------- /pkg/engine/applicationgateway_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/applicationgateway_test.go -------------------------------------------------------------------------------- /pkg/engine/armoutputs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/armoutputs.go -------------------------------------------------------------------------------- /pkg/engine/armoutputs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/armoutputs_test.go -------------------------------------------------------------------------------- /pkg/engine/armresources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/armresources.go -------------------------------------------------------------------------------- /pkg/engine/armresources_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/armresources_test.go -------------------------------------------------------------------------------- /pkg/engine/armtype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/armtype.go -------------------------------------------------------------------------------- /pkg/engine/armtype_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/armtype_test.go -------------------------------------------------------------------------------- /pkg/engine/armvariables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/armvariables.go -------------------------------------------------------------------------------- /pkg/engine/armvariables_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/armvariables_test.go -------------------------------------------------------------------------------- /pkg/engine/artifacts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/artifacts.go -------------------------------------------------------------------------------- /pkg/engine/artifacts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/artifacts_test.go -------------------------------------------------------------------------------- /pkg/engine/availabilitysets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/availabilitysets.go -------------------------------------------------------------------------------- /pkg/engine/availabilitysets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/availabilitysets_test.go -------------------------------------------------------------------------------- /pkg/engine/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/const.go -------------------------------------------------------------------------------- /pkg/engine/cosmosdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/cosmosdb.go -------------------------------------------------------------------------------- /pkg/engine/cosmosdb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/cosmosdb_test.go -------------------------------------------------------------------------------- /pkg/engine/cse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/cse.go -------------------------------------------------------------------------------- /pkg/engine/cse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/cse_test.go -------------------------------------------------------------------------------- /pkg/engine/customfiles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/customfiles.go -------------------------------------------------------------------------------- /pkg/engine/customfiles_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/customfiles_test.go -------------------------------------------------------------------------------- /pkg/engine/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/deployment.go -------------------------------------------------------------------------------- /pkg/engine/deployment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/deployment_test.go -------------------------------------------------------------------------------- /pkg/engine/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/doc.go -------------------------------------------------------------------------------- /pkg/engine/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/engine.go -------------------------------------------------------------------------------- /pkg/engine/engine_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/engine_test.go -------------------------------------------------------------------------------- /pkg/engine/fileloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/fileloader.go -------------------------------------------------------------------------------- /pkg/engine/images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/images.go -------------------------------------------------------------------------------- /pkg/engine/images_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/images_test.go -------------------------------------------------------------------------------- /pkg/engine/ipaddresses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/ipaddresses.go -------------------------------------------------------------------------------- /pkg/engine/ipaddresses_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/ipaddresses_test.go -------------------------------------------------------------------------------- /pkg/engine/keyvaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/keyvaults.go -------------------------------------------------------------------------------- /pkg/engine/keyvaults_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/keyvaults_test.go -------------------------------------------------------------------------------- /pkg/engine/loadbalancers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/loadbalancers.go -------------------------------------------------------------------------------- /pkg/engine/loadbalancers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/loadbalancers_test.go -------------------------------------------------------------------------------- /pkg/engine/masterarmresources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/masterarmresources.go -------------------------------------------------------------------------------- /pkg/engine/masterarmresources_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/masterarmresources_test.go -------------------------------------------------------------------------------- /pkg/engine/networkinterfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/networkinterfaces.go -------------------------------------------------------------------------------- /pkg/engine/networkinterfaces_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/networkinterfaces_test.go -------------------------------------------------------------------------------- /pkg/engine/networksecuritygroups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/networksecuritygroups.go -------------------------------------------------------------------------------- /pkg/engine/networksecuritygroups_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/networksecuritygroups_test.go -------------------------------------------------------------------------------- /pkg/engine/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/output.go -------------------------------------------------------------------------------- /pkg/engine/output_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/output_test.go -------------------------------------------------------------------------------- /pkg/engine/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/params.go -------------------------------------------------------------------------------- /pkg/engine/params_k8s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/params_k8s.go -------------------------------------------------------------------------------- /pkg/engine/params_k8s_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/params_k8s_test.go -------------------------------------------------------------------------------- /pkg/engine/params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/params_test.go -------------------------------------------------------------------------------- /pkg/engine/roleassignments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/roleassignments.go -------------------------------------------------------------------------------- /pkg/engine/roleassignments_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/roleassignments_test.go -------------------------------------------------------------------------------- /pkg/engine/routetables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/routetables.go -------------------------------------------------------------------------------- /pkg/engine/routetables_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/routetables_test.go -------------------------------------------------------------------------------- /pkg/engine/storageaccounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/storageaccounts.go -------------------------------------------------------------------------------- /pkg/engine/storageaccounts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/storageaccounts_test.go -------------------------------------------------------------------------------- /pkg/engine/systemroleassignments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/systemroleassignments.go -------------------------------------------------------------------------------- /pkg/engine/systemroleassignments_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/systemroleassignments_test.go -------------------------------------------------------------------------------- /pkg/engine/template_generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/template_generator.go -------------------------------------------------------------------------------- /pkg/engine/template_generator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/template_generator_test.go -------------------------------------------------------------------------------- /pkg/engine/templates_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/templates_generated.go -------------------------------------------------------------------------------- /pkg/engine/testdata/rename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/testdata/rename.sh -------------------------------------------------------------------------------- /pkg/engine/testutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/testutils.go -------------------------------------------------------------------------------- /pkg/engine/transform/apimodel_merger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/transform/apimodel_merger.go -------------------------------------------------------------------------------- /pkg/engine/transform/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/transform/doc.go -------------------------------------------------------------------------------- /pkg/engine/transform/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/transform/json.go -------------------------------------------------------------------------------- /pkg/engine/transform/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/transform/transform.go -------------------------------------------------------------------------------- /pkg/engine/transform/transform_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/transform/transform_test.go -------------------------------------------------------------------------------- /pkg/engine/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/types.go -------------------------------------------------------------------------------- /pkg/engine/userassignedidentities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/userassignedidentities.go -------------------------------------------------------------------------------- /pkg/engine/virtualmachines.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/virtualmachines.go -------------------------------------------------------------------------------- /pkg/engine/virtualmachines_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/virtualmachines_test.go -------------------------------------------------------------------------------- /pkg/engine/virtualmachinescalesets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/virtualmachinescalesets.go -------------------------------------------------------------------------------- /pkg/engine/virtualnetworks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/virtualnetworks.go -------------------------------------------------------------------------------- /pkg/engine/virtualnetworks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/virtualnetworks_test.go -------------------------------------------------------------------------------- /pkg/engine/vmextensions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/vmextensions.go -------------------------------------------------------------------------------- /pkg/engine/vmextensions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/engine/vmextensions_test.go -------------------------------------------------------------------------------- /pkg/helpers/azure_locations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/helpers/azure_locations.go -------------------------------------------------------------------------------- /pkg/helpers/azure_skus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/helpers/azure_skus.go -------------------------------------------------------------------------------- /pkg/helpers/azure_skus_const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/helpers/azure_skus_const.go -------------------------------------------------------------------------------- /pkg/helpers/azure_skus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/helpers/azure_skus_test.go -------------------------------------------------------------------------------- /pkg/helpers/default_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/helpers/default_helpers.go -------------------------------------------------------------------------------- /pkg/helpers/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/helpers/doc.go -------------------------------------------------------------------------------- /pkg/helpers/fast_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/helpers/fast_helpers.go -------------------------------------------------------------------------------- /pkg/helpers/filesaver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/helpers/filesaver.go -------------------------------------------------------------------------------- /pkg/helpers/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/helpers/helpers.go -------------------------------------------------------------------------------- /pkg/helpers/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/helpers/helpers_test.go -------------------------------------------------------------------------------- /pkg/helpers/pki.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/helpers/pki.go -------------------------------------------------------------------------------- /pkg/helpers/pki_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/helpers/pki_test.go -------------------------------------------------------------------------------- /pkg/helpers/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/helpers/ssh.go -------------------------------------------------------------------------------- /pkg/helpers/ssh/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/helpers/ssh/init.go -------------------------------------------------------------------------------- /pkg/helpers/ssh/init_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/helpers/ssh/init_darwin.go -------------------------------------------------------------------------------- /pkg/helpers/ssh/init_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/helpers/ssh/init_linux.go -------------------------------------------------------------------------------- /pkg/helpers/ssh/init_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/helpers/ssh/init_windows.go -------------------------------------------------------------------------------- /pkg/helpers/ssh/scp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/helpers/ssh/scp.go -------------------------------------------------------------------------------- /pkg/helpers/ssh/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/helpers/ssh/ssh.go -------------------------------------------------------------------------------- /pkg/helpers/ssh/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/helpers/ssh/types.go -------------------------------------------------------------------------------- /pkg/helpers/to/to.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/helpers/to/to.go -------------------------------------------------------------------------------- /pkg/helpers/to/to_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/helpers/to/to_test.go -------------------------------------------------------------------------------- /pkg/i18n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/i18n/README.md -------------------------------------------------------------------------------- /pkg/i18n/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/i18n/const.go -------------------------------------------------------------------------------- /pkg/i18n/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/i18n/doc.go -------------------------------------------------------------------------------- /pkg/i18n/i18n.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/i18n/i18n.go -------------------------------------------------------------------------------- /pkg/i18n/i18n_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/i18n/i18n_test.go -------------------------------------------------------------------------------- /pkg/i18n/resourceloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/i18n/resourceloader.go -------------------------------------------------------------------------------- /pkg/i18n/translations_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/i18n/translations_generated.go -------------------------------------------------------------------------------- /pkg/kubernetes/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/kubernetes/client.go -------------------------------------------------------------------------------- /pkg/kubernetes/composite_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/kubernetes/composite_client.go -------------------------------------------------------------------------------- /pkg/kubernetes/composite_client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/kubernetes/composite_client_test.go -------------------------------------------------------------------------------- /pkg/kubernetes/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/kubernetes/interfaces.go -------------------------------------------------------------------------------- /pkg/kubernetes/internal/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/kubernetes/internal/interfaces.go -------------------------------------------------------------------------------- /pkg/kubernetes/mock_kubernetes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/kubernetes/mock_kubernetes/doc.go -------------------------------------------------------------------------------- /pkg/kubernetes/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/kubernetes/util.go -------------------------------------------------------------------------------- /pkg/operations/cordondrainvm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/operations/cordondrainvm.go -------------------------------------------------------------------------------- /pkg/operations/cordondrainvm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/operations/cordondrainvm_test.go -------------------------------------------------------------------------------- /pkg/operations/deletevm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/operations/deletevm.go -------------------------------------------------------------------------------- /pkg/operations/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/operations/doc.go -------------------------------------------------------------------------------- /pkg/operations/k8sapi_ops.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/operations/k8sapi_ops.go -------------------------------------------------------------------------------- /pkg/operations/k8sapi_ops_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/operations/k8sapi_ops_test.go -------------------------------------------------------------------------------- /pkg/operations/kubernetesupgrade/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/operations/kubernetesupgrade/doc.go -------------------------------------------------------------------------------- /pkg/operations/scaledownagentpool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/operations/scaledownagentpool.go -------------------------------------------------------------------------------- /pkg/telemetry/telemetry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/telemetry/telemetry.go -------------------------------------------------------------------------------- /pkg/versions/compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/versions/compare.go -------------------------------------------------------------------------------- /pkg/versions/compare_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/pkg/versions/compare_test.go -------------------------------------------------------------------------------- /releases/CHANGELOG-v0.78.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/releases/CHANGELOG-v0.78.0.md -------------------------------------------------------------------------------- /releases/CHANGELOG-v0.80.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/releases/CHANGELOG-v0.80.1.md -------------------------------------------------------------------------------- /scripts/build-windows-containerd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/scripts/build-windows-containerd.sh -------------------------------------------------------------------------------- /scripts/collect-logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/scripts/collect-logs.sh -------------------------------------------------------------------------------- /scripts/collect-windows-logs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/scripts/collect-windows-logs.ps1 -------------------------------------------------------------------------------- /scripts/copyright-header.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/scripts/copyright-header.sh -------------------------------------------------------------------------------- /scripts/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/scripts/copyright.txt -------------------------------------------------------------------------------- /scripts/cse_customcloud_cni.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/scripts/cse_customcloud_cni.sh -------------------------------------------------------------------------------- /scripts/devenv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/scripts/devenv.ps1 -------------------------------------------------------------------------------- /scripts/ensure-generated.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/scripts/ensure-generated.sh -------------------------------------------------------------------------------- /scripts/fault_domains_expr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/scripts/fault_domains_expr.py -------------------------------------------------------------------------------- /scripts/get-akse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/scripts/get-akse.sh -------------------------------------------------------------------------------- /scripts/get-kubectl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/scripts/get-kubectl.sh -------------------------------------------------------------------------------- /scripts/gh-create-release-branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/scripts/gh-create-release-branch.sh -------------------------------------------------------------------------------- /scripts/ginkgo.coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/scripts/ginkgo.coverage.sh -------------------------------------------------------------------------------- /scripts/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/scripts/k -------------------------------------------------------------------------------- /scripts/update-enus-po.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/scripts/update-enus-po.sh -------------------------------------------------------------------------------- /scripts/update-translation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/scripts/update-translation.sh -------------------------------------------------------------------------------- /scripts/validate-azcli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/scripts/validate-azcli.sh -------------------------------------------------------------------------------- /scripts/validate-copyright-header.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/scripts/validate-copyright-header.sh -------------------------------------------------------------------------------- /scripts/validate-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/scripts/validate-dependencies.sh -------------------------------------------------------------------------------- /scripts/validate-go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/scripts/validate-go.sh -------------------------------------------------------------------------------- /scripts/validate-shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/scripts/validate-shell.sh -------------------------------------------------------------------------------- /test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test.mk -------------------------------------------------------------------------------- /test/e2e/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/Makefile -------------------------------------------------------------------------------- /test/e2e/azure/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/azure/cli.go -------------------------------------------------------------------------------- /test/e2e/azure/cli_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/azure/cli_test.go -------------------------------------------------------------------------------- /test/e2e/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/build.sh -------------------------------------------------------------------------------- /test/e2e/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/cleanup.sh -------------------------------------------------------------------------------- /test/e2e/cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/cluster.sh -------------------------------------------------------------------------------- /test/e2e/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/config/config.go -------------------------------------------------------------------------------- /test/e2e/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/config/config_test.go -------------------------------------------------------------------------------- /test/e2e/engine/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/engine/cli.go -------------------------------------------------------------------------------- /test/e2e/engine/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/engine/template.go -------------------------------------------------------------------------------- /test/e2e/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/go.mod -------------------------------------------------------------------------------- /test/e2e/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/go.sum -------------------------------------------------------------------------------- /test/e2e/jenkins_reown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/jenkins_reown.sh -------------------------------------------------------------------------------- /test/e2e/kubernetes/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/kubernetes/config.go -------------------------------------------------------------------------------- /test/e2e/kubernetes/event/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/kubernetes/event/event.go -------------------------------------------------------------------------------- /test/e2e/kubernetes/hpa/hpa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/kubernetes/hpa/hpa.go -------------------------------------------------------------------------------- /test/e2e/kubernetes/job/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/kubernetes/job/job.go -------------------------------------------------------------------------------- /test/e2e/kubernetes/kubernetes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/kubernetes/kubernetes_test.go -------------------------------------------------------------------------------- /test/e2e/kubernetes/node/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/kubernetes/node/node.go -------------------------------------------------------------------------------- /test/e2e/kubernetes/pod/pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/kubernetes/pod/pod.go -------------------------------------------------------------------------------- /test/e2e/kubernetes/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/kubernetes/service/service.go -------------------------------------------------------------------------------- /test/e2e/kubernetes/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/kubernetes/util/util.go -------------------------------------------------------------------------------- /test/e2e/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/metrics/metrics.go -------------------------------------------------------------------------------- /test/e2e/remote/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/remote/ssh.go -------------------------------------------------------------------------------- /test/e2e/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/runner.go -------------------------------------------------------------------------------- /test/e2e/runner/cli_provisioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/runner/cli_provisioner.go -------------------------------------------------------------------------------- /test/e2e/runner/ginkgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/runner/ginkgo.go -------------------------------------------------------------------------------- /test/e2e/test_cluster_configs/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/test_cluster_configs/base.json -------------------------------------------------------------------------------- /test/e2e/test_cluster_configs/gpu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/test_cluster_configs/gpu.json -------------------------------------------------------------------------------- /test/e2e/test_cluster_configs/kms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/test_cluster_configs/kms.json -------------------------------------------------------------------------------- /test/e2e/test_cluster_configs/sgx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/test/e2e/test_cluster_configs/sgx.json -------------------------------------------------------------------------------- /vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/.gitignore: -------------------------------------------------------------------------------- 1 | # live test artifacts 2 | Dockerfile 3 | k8s.yaml 4 | sshkey* 5 | -------------------------------------------------------------------------------- /vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/go.work: -------------------------------------------------------------------------------- 1 | go 1.18 2 | 3 | use ( 4 | . 5 | ./cache 6 | ) 7 | -------------------------------------------------------------------------------- /vendor/github.com/Azure/azure-storage-blob-go/azblob/version.go: -------------------------------------------------------------------------------- 1 | package azblob 2 | 3 | const serviceLibVersion = "0.7" 4 | -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/BurntSushi/toml/doc.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/BurntSushi/toml/lex.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/session.vim: -------------------------------------------------------------------------------- 1 | au BufWritePost *.go silent!make tags > /dev/null 2>&1 2 | -------------------------------------------------------------------------------- /vendor/github.com/Jeffail/gabs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/Jeffail/gabs/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Jeffail/gabs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/Jeffail/gabs/README.md -------------------------------------------------------------------------------- /vendor/github.com/Jeffail/gabs/gabs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/Jeffail/gabs/gabs.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/blang/semver/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/blang/semver/README.md -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/blang/semver/json.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/blang/semver/range.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/semver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/blang/semver/semver.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/blang/semver/sort.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/blang/semver/sql.go -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /vendor/github.com/fatih/structs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/fatih/structs/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/fatih/structs/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/fatih/structs/field.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/structs/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/fatih/structs/tags.go -------------------------------------------------------------------------------- /vendor/github.com/form3tech-oss/jwt-go/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | .idea/ 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/go-logr/logr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/logr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/go-logr/logr/logr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/slogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/go-logr/logr/slogr.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonreference/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | vendor 3 | Godeps 4 | .idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/go-openapi/swag/doc.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/go-openapi/swag/net.go -------------------------------------------------------------------------------- /vendor/github.com/go-task/slim-sprig/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-task/slim-sprig/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | /.glide 3 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang-jwt/jwt/v5/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | .idea/ 4 | 5 | -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/golang/mock/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/golang/mock/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/gnostic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/google/gnostic/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/google/go-cmp/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/google/gofuzz/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/google/gofuzz/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/google/gofuzz/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/google/pprof/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/google/pprof/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/google/uuid/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/google/uuid/node_js.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/google/uuid/null.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/imdario/mergo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/imdario/mergo/doc.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/imdario/mergo/map.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/imdario/mergo/merge.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/mergo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/imdario/mergo/mergo.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/leodido/go-urn/urn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/leodido/go-urn/urn.go -------------------------------------------------------------------------------- /vendor/github.com/magefile/mage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/magefile/mage/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-ieproxy/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/mattn/go-isatty/doc.go -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/mgutz/ansi/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/mgutz/ansi/README.md -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/ansi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/mgutz/ansi/ansi.go -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/mgutz/ansi/doc.go -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/mgutz/ansi/print.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/onsi/ginkgo/v2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/v2/types/version.go: -------------------------------------------------------------------------------- 1 | package types 2 | 3 | const VERSION = "2.17.1" 4 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.test 3 | . 4 | .idea 5 | gomega.iml 6 | TODO 7 | .vscode -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/onsi/gomega/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/onsi/gomega/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/browser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/pkg/browser/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/browser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/pkg/browser/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/browser/browser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/pkg/browser/browser.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/pkg/errors/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/pkg/errors/go113.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/satori/go.uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/satori/go.uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/satori/go.uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/spf13/cobra/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/spf13/cobra/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command_notwin.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | 3 | package cobra 4 | 5 | var preExecHookFn func(*Command) 6 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/net/html/iter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/net/idna/go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/pkce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/oauth2/pkce.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/sys/cpu/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/auxv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/sys/unix/auxv.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/term/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/term/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/term/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/term/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/term/term.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/term/term_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/term/terminal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/ini.v1/.gitignore -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/ini.v1/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/ini.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/ini.v1/Makefile -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/ini.v1/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/ini.v1/error.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/ini.v1/file.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/ini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/ini.v1/ini.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/ini.v1/key.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/ini.v1/parser.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/ini.v1/section.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/ini.v1/struct.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/apps/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/apps/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/apps/v1beta2/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/core/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/core/v1/resource.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/discovery/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/discovery/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/events/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/events/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/node/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/node/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/node/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/node/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/policy/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/policy/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/rbac/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/rbac/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/api/storage/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/openapi/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - apelisse 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/client-go/rest/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/client-go/rest/exec.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/retry/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - caesarxuchao 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/klog/v2/.gitignore -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/klog/v2/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/klog/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/klog/v2/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/klog/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/klog/v2/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/klog/v2/SECURITY.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/contextual.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/klog/v2/contextual.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/klog/v2/exit.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/klog/v2/imports.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/klog/v2/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/klog/v2/klog_file.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/klog/v2/klogr.go -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/kube-openapi/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/util/proto/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - apelisse 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/validation/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/utils/clock/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/utils/clock/clock.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipfamily.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/utils/net/ipfamily.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/utils/net/ipnet.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/utils/net/net.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/utils/net/parse.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/k8s.io/utils/net/port.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/sigs.k8s.io/json/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/sigs.k8s.io/json/Makefile -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/sigs.k8s.io/json/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/sigs.k8s.io/json/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/sigs.k8s.io/json/SECURITY.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/sigs.k8s.io/json/doc.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/sigs.k8s.io/json/json.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/sigs.k8s.io/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/sigs.k8s.io/yaml/.travis.yml -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/sigs.k8s.io/yaml/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/sigs.k8s.io/yaml/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/sigs.k8s.io/yaml/RELEASE.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/sigs.k8s.io/yaml/fields.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/sigs.k8s.io/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml_go110.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vendor/sigs.k8s.io/yaml/yaml_go110.go -------------------------------------------------------------------------------- /versioning.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/versioning.mk -------------------------------------------------------------------------------- /vhd/aib/AKSeImageTemplateLinux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vhd/aib/AKSeImageTemplateLinux.json -------------------------------------------------------------------------------- /vhd/aib/AKSeImageTemplateWindows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vhd/aib/AKSeImageTemplateWindows.json -------------------------------------------------------------------------------- /vhd/aib/ImageCreationRole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vhd/aib/ImageCreationRole.json -------------------------------------------------------------------------------- /vhd/aib/ImageVnetRole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vhd/aib/ImageVnetRole.json -------------------------------------------------------------------------------- /vhd/notice/notice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vhd/notice/notice.txt -------------------------------------------------------------------------------- /vhd/notice/notice_windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vhd/notice/notice_windows.txt -------------------------------------------------------------------------------- /vhd/packer/cleanup-vhd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vhd/packer/cleanup-vhd.sh -------------------------------------------------------------------------------- /vhd/packer/init-variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vhd/packer/init-variables.sh -------------------------------------------------------------------------------- /vhd/packer/install-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vhd/packer/install-dependencies.sh -------------------------------------------------------------------------------- /vhd/packer/packer_source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vhd/packer/packer_source.sh -------------------------------------------------------------------------------- /vhd/packer/settings-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vhd/packer/settings-example.json -------------------------------------------------------------------------------- /vhd/packer/sysprep-phase1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vhd/packer/sysprep-phase1.ps1 -------------------------------------------------------------------------------- /vhd/packer/sysprep-phase2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vhd/packer/sysprep-phase2.ps1 -------------------------------------------------------------------------------- /vhd/packer/vhd-image-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vhd/packer/vhd-image-builder.json -------------------------------------------------------------------------------- /vhd/packer/vhd-rg-cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vhd/packer/vhd-rg-cleanup.sh -------------------------------------------------------------------------------- /vhd/packer/windows-2004-vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vhd/packer/windows-2004-vars.json -------------------------------------------------------------------------------- /vhd/packer/windows-2019-vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vhd/packer/windows-2019-vars.json -------------------------------------------------------------------------------- /vhd/packer/windows-vhd-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-engine-azurestack/HEAD/vhd/packer/windows-vhd-builder.json --------------------------------------------------------------------------------