├── .drone.yml ├── .editorconfig ├── .github └── ISSUE_TEMPLATE │ └── ----.md ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── Dockerfile ├── README.md ├── docs ├── k3s │ ├── _index.md │ ├── advanced │ │ └── _index.md │ ├── architecture │ │ └── _index.md │ ├── autok3s │ │ ├── _index.md │ │ ├── airgap │ │ │ └── _index.md │ │ ├── alibaba │ │ │ └── _index.md │ │ ├── aws │ │ │ └── _index.md │ │ ├── google │ │ │ └── _index.md │ │ ├── harvester │ │ │ └── _index.md │ │ ├── k3d │ │ │ └── _index.md │ │ ├── native │ │ │ └── _index.md │ │ └── tencent │ │ │ └── _index.md │ ├── backup-restore │ │ └── _index.md │ ├── cluster-access │ │ └── _index.md │ ├── faq │ │ └── _index.md │ ├── helm │ │ └── _index.md │ ├── installation │ │ ├── _index.md │ │ ├── airgap │ │ │ └── _index.md │ │ ├── datastore │ │ │ └── _index.md │ │ ├── disable-flags │ │ │ └── _index.md │ │ ├── ha-embedded │ │ │ └── _index.md │ │ ├── ha │ │ │ └── _index.md │ │ ├── install-options │ │ │ ├── _index.md │ │ │ ├── agent-config │ │ │ │ └── _index.md │ │ │ ├── how-to-flags │ │ │ │ └── _index.md │ │ │ └── server-config │ │ │ │ └── _index.md │ │ ├── installation-requirements │ │ │ ├── _index.md │ │ │ └── resource-profiling │ │ │ │ └── _index.md │ │ ├── kube-dashboard │ │ │ └── _index.md │ │ ├── network-options │ │ │ └── _index.md │ │ ├── private-registry │ │ │ └── _index.md │ │ └── uninstall │ │ │ └── _index.md │ ├── known-issues │ │ └── _index.md │ ├── networking │ │ └── _index.md │ ├── quick-start │ │ └── _index.md │ ├── security │ │ ├── _index.md │ │ ├── hardening-guide │ │ │ └── _index.md │ │ ├── secrets_encryption │ │ │ └── _index.md │ │ └── self-assessment │ │ │ └── _index.md │ ├── storage │ │ └── _index.md │ └── upgrades │ │ ├── _index.md │ │ ├── automated │ │ └── _index.md │ │ ├── basic │ │ └── _index.md │ │ └── killall │ │ └── _index.md ├── octopus │ ├── about │ │ └── _index.md │ ├── adaptors │ │ ├── _index.md │ │ ├── agent-device │ │ │ └── _index.md │ │ ├── ble │ │ │ └── _index.md │ │ ├── develop │ │ │ └── _index.md │ │ ├── dummy │ │ │ └── _index.md │ │ ├── modbus │ │ │ └── _index.md │ │ ├── mqtt-extension │ │ │ └── _index.md │ │ ├── mqtt │ │ │ └── _index.md │ │ └── opc-ua │ │ │ └── _index.md │ ├── develop │ │ └── _index.md │ ├── device-link │ │ ├── _index.md │ │ └── state-of-dl │ │ │ └── _index.md │ ├── faq │ │ └── _index.md │ ├── install │ │ └── _index.md │ ├── monitoring │ │ └── _index.md │ ├── octopus-ui │ │ └── _index.md │ └── quick-start │ │ └── _index.md ├── rancher1 │ ├── _index.md │ ├── about │ │ └── _index.md │ ├── configurations │ │ ├── catalog │ │ │ ├── _index.md │ │ │ └── private-catalog │ │ │ │ └── _index.md │ │ ├── cli │ │ │ ├── _index.md │ │ │ ├── commands │ │ │ │ └── _index.md │ │ │ └── variable-interpolation │ │ │ │ └── _index.md │ │ └── environments │ │ │ ├── _index.md │ │ │ ├── access-control │ │ │ └── _index.md │ │ │ ├── accounts │ │ │ └── _index.md │ │ │ ├── audit-log │ │ │ └── _index.md │ │ │ ├── certificates │ │ │ └── _index.md │ │ │ ├── ecr_updater │ │ │ └── _index.md │ │ │ ├── machine-drivers │ │ │ └── _index.md │ │ │ ├── registries │ │ │ └── _index.md │ │ │ └── settings │ │ │ └── _index.md │ ├── faq │ │ ├── _index.md │ │ ├── agents │ │ │ └── _index.md │ │ ├── docker │ │ │ └── _index.md │ │ ├── kubernetes │ │ │ └── _index.md │ │ └── server │ │ │ └── _index.md │ ├── infrastructure │ │ ├── cattle │ │ │ ├── adding-external-services │ │ │ │ └── _index.md │ │ │ ├── adding-load-balancers │ │ │ │ └── _index.md │ │ │ ├── adding-service-alias │ │ │ │ └── _index.md │ │ │ ├── adding-services │ │ │ │ └── _index.md │ │ │ ├── containers │ │ │ │ └── _index.md │ │ │ ├── external-dns-service │ │ │ │ └── _index.md │ │ │ ├── health-checks │ │ │ │ └── _index.md │ │ │ ├── internal-dns-service │ │ │ │ └── _index.md │ │ │ ├── labels │ │ │ │ └── _index.md │ │ │ ├── rancher-compose │ │ │ │ ├── _index.md │ │ │ │ ├── commands │ │ │ │ │ └── _index.md │ │ │ │ └── environment-interpolation │ │ │ │ │ └── _index.md │ │ │ ├── scheduling │ │ │ │ └── _index.md │ │ │ ├── secrets │ │ │ │ └── _index.md │ │ │ ├── stacks │ │ │ │ └── _index.md │ │ │ ├── upgrading │ │ │ │ └── _index.md │ │ │ ├── vms │ │ │ │ └── _index.md │ │ │ ├── volume │ │ │ │ └── _index.md │ │ │ └── webhook-service │ │ │ │ └── _index.md │ │ ├── hosts │ │ │ ├── _index.md │ │ │ ├── amazon │ │ │ │ └── _index.md │ │ │ ├── azure │ │ │ │ └── _index.md │ │ │ ├── custom │ │ │ │ └── _index.md │ │ │ ├── digitalocean │ │ │ │ └── _index.md │ │ │ ├── exoscale │ │ │ │ └── _index.md │ │ │ ├── other │ │ │ │ └── _index.md │ │ │ ├── packet │ │ │ │ └── _index.md │ │ │ └── rackspace │ │ │ │ └── _index.md │ │ ├── mesos │ │ │ └── _index.md │ │ ├── swarm │ │ │ └── _index.md │ │ └── windows │ │ │ └── _index.md │ ├── installation │ │ ├── basic-ssl-config │ │ │ └── _index.md │ │ ├── installing-server │ │ │ └── _index.md │ │ ├── no-internet-access │ │ │ └── _index.md │ │ └── selinux │ │ │ └── _index.md │ ├── overview │ │ ├── native-docker │ │ │ └── _index.md │ │ └── start │ │ │ └── _index.md │ ├── rancher-service │ │ ├── _index.md │ │ ├── dns-service │ │ │ └── _index.md │ │ ├── load-balancer │ │ │ └── _index.md │ │ ├── metadata-service │ │ │ └── _index.md │ │ ├── network-policy │ │ │ └── _index.md │ │ ├── networking │ │ │ └── _index.md │ │ ├── scheduler │ │ │ └── _index.md │ │ ├── service-accounts │ │ │ └── _index.md │ │ └── storage-services │ │ │ ├── _index.md │ │ │ ├── rancher-ebs │ │ │ └── _index.md │ │ │ └── rancher-nfs │ │ │ └── _index.md │ └── upgrade │ │ └── _index.md ├── rancher2.5 │ ├── _index.md │ ├── admin-settings │ │ ├── _index.md │ │ ├── authentication │ │ │ ├── _index.md │ │ │ ├── ad │ │ │ │ └── _index.md │ │ │ ├── azure-ad │ │ │ │ └── _index.md │ │ │ ├── freeipa │ │ │ │ └── _index.md │ │ │ ├── github │ │ │ │ └── _index.md │ │ │ ├── google │ │ │ │ └── _index.md │ │ │ ├── keycloak │ │ │ │ └── _index.md │ │ │ ├── local │ │ │ │ └── _index.md │ │ │ ├── microsoft-adfs │ │ │ │ ├── _index.md │ │ │ │ ├── microsoft-adfs-setup │ │ │ │ │ └── _index.md │ │ │ │ └── rancher-adfs-setup │ │ │ │ │ └── _index.md │ │ │ ├── okta │ │ │ │ └── _index.md │ │ │ ├── openldap │ │ │ │ ├── _index.md │ │ │ │ └── openldap-config │ │ │ │ │ └── _index.md │ │ │ ├── ping-federate │ │ │ │ └── _index.md │ │ │ ├── shibboleth │ │ │ │ ├── _index.md │ │ │ │ └── about │ │ │ │ │ └── _index.md │ │ │ └── user-groups │ │ │ │ └── _index.md │ │ ├── config-private-registry │ │ │ └── _index.md │ │ ├── drivers │ │ │ ├── _index.md │ │ │ ├── cluster-drivers │ │ │ │ └── _index.md │ │ │ └── node-drivers │ │ │ │ └── _index.md │ │ ├── k8s-metadata │ │ │ └── _index.md │ │ ├── pod-security-policies │ │ │ └── _index.md │ │ ├── rbac │ │ │ ├── _index.md │ │ │ ├── cluster-project-roles │ │ │ │ └── _index.md │ │ │ ├── default-custom-roles │ │ │ │ └── _index.md │ │ │ ├── global-permissions │ │ │ │ └── _index.md │ │ │ └── locked-roles │ │ │ │ └── _index.md │ │ ├── replace-ip-domain │ │ │ └── _index.md │ │ └── rke-templates │ │ │ ├── _index.md │ │ │ ├── applying-templates │ │ │ └── _index.md │ │ │ ├── creating-and-revising │ │ │ └── _index.md │ │ │ ├── creator-permissions │ │ │ └── _index.md │ │ │ ├── enforcement │ │ │ └── _index.md │ │ │ ├── example-scenarios │ │ │ └── _index.md │ │ │ ├── example-yaml │ │ │ └── _index.md │ │ │ ├── overrides │ │ │ └── _index.md │ │ │ ├── rke-templates-and-hardware │ │ │ └── _index.md │ │ │ └── template-access-and-sharing │ │ │ └── _index.md │ ├── api │ │ ├── _index.md │ │ ├── api-custom-cluster │ │ │ └── _index.md │ │ ├── api-import-cluster │ │ │ └── _index.md │ │ ├── api-resources │ │ │ └── _index.md │ │ └── api-tokens │ │ │ └── _index.md │ ├── backups │ │ ├── _index.md │ │ ├── back-up-rancher │ │ │ └── _index.md │ │ ├── configuration │ │ │ ├── _index.md │ │ │ ├── back-up-config │ │ │ │ └── _index.md │ │ │ ├── restore-config │ │ │ │ └── _index.md │ │ │ └── storage-config │ │ │ │ └── _index.md │ │ ├── docker-installs │ │ │ ├── _index.md │ │ │ ├── docker-backups │ │ │ │ └── _index.md │ │ │ └── docker-restores │ │ │ │ └── _index.md │ │ ├── examples │ │ │ └── _index.md │ │ ├── migrating-rancher │ │ │ └── _index.md │ │ └── restoring-rancher │ │ │ └── _index.md │ ├── best-practices │ │ ├── _index.md │ │ ├── rancher-managed │ │ │ ├── _index.md │ │ │ ├── containers │ │ │ │ └── _index.md │ │ │ ├── logging │ │ │ │ └── _index.md │ │ │ ├── managed-vsphere │ │ │ │ └── _index.md │ │ │ └── monitoring │ │ │ │ └── _index.md │ │ └── rancher-server │ │ │ ├── _index.md │ │ │ ├── deployment-strategies │ │ │ └── _index.md │ │ │ ├── deployment-types │ │ │ └── _index.md │ │ │ └── rancher-in-vsphere │ │ │ └── _index.md │ ├── cis-scans │ │ ├── _index.md │ │ ├── configuration │ │ │ └── _index.md │ │ ├── custom-benchmark │ │ │ └── _index.md │ │ ├── rbac │ │ │ └── _index.md │ │ └── skipped-tests │ │ │ └── _index.md │ ├── cli │ │ └── _index.md │ ├── cluster-admin │ │ ├── _index.md │ │ ├── backing-up-etcd │ │ │ └── _index.md │ │ ├── certificate-rotation │ │ │ └── _index.md │ │ ├── cleaning-cluster-nodes │ │ │ └── _index.md │ │ ├── cloning-clusters │ │ │ └── _index.md │ │ ├── cluster-access │ │ │ ├── _index.md │ │ │ ├── ace │ │ │ │ └── _index.md │ │ │ ├── cluster-members │ │ │ │ └── _index.md │ │ │ └── kubectl │ │ │ │ └── _index.md │ │ ├── cluster-autoscaler │ │ │ ├── _index.md │ │ │ └── amazon │ │ │ │ └── _index.md │ │ ├── editing-clusters │ │ │ ├── _index.md │ │ │ ├── eks-config-reference │ │ │ │ └── _index.md │ │ │ ├── gke-config-reference │ │ │ │ ├── _index.md │ │ │ │ └── private-clusters │ │ │ │ │ └── _index.md │ │ │ ├── rke-config-reference │ │ │ │ └── _index.md │ │ │ └── syncing │ │ │ │ └── _index.md │ │ ├── etcd-compact │ │ │ └── _index.md │ │ ├── kubectl-delete-evicted-pods │ │ │ └── _index.md │ │ ├── nodes │ │ │ └── _index.md │ │ ├── pod-security-policy │ │ │ └── _index.md │ │ ├── projects-and-namespaces │ │ │ └── _index.md │ │ ├── replace-ca │ │ │ └── _index.md │ │ ├── restore-kubecfg │ │ │ └── _index.md │ │ ├── restore-rkestate │ │ │ └── _index.md │ │ ├── restoring-etcd │ │ │ └── _index.md │ │ ├── single-to-ha │ │ │ └── _index.md │ │ ├── tools │ │ │ ├── _index.md │ │ │ ├── cluster-alerts │ │ │ │ ├── _index.md │ │ │ │ └── default-alerts │ │ │ │ │ └── _index.md │ │ │ ├── cluster-monitoring │ │ │ │ ├── _index.md │ │ │ │ ├── cluster-metrics │ │ │ │ │ ├── _index.md │ │ │ │ │ └── custom-metrics │ │ │ │ │ │ └── _index.md │ │ │ │ ├── expression │ │ │ │ │ └── _index.md │ │ │ │ ├── prometheus │ │ │ │ │ └── _index.md │ │ │ │ └── viewing-metrics │ │ │ │ │ └── _index.md │ │ │ ├── istio │ │ │ │ ├── _index.md │ │ │ │ ├── disabling-istio │ │ │ │ │ └── _index.md │ │ │ │ ├── rbac │ │ │ │ │ └── _index.md │ │ │ │ ├── release-notes │ │ │ │ │ └── _index.md │ │ │ │ ├── resources │ │ │ │ │ └── _index.md │ │ │ │ └── setup │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── deploy-workloads │ │ │ │ │ └── _index.md │ │ │ │ │ ├── enable-istio-in-cluster │ │ │ │ │ ├── _index.md │ │ │ │ │ └── enable-istio-with-psp │ │ │ │ │ │ └── _index.md │ │ │ │ │ ├── enable-istio-in-namespace │ │ │ │ │ └── _index.md │ │ │ │ │ ├── gateway │ │ │ │ │ └── _index.md │ │ │ │ │ ├── node-selectors │ │ │ │ │ └── _index.md │ │ │ │ │ ├── set-up-traffic-management │ │ │ │ │ └── _index.md │ │ │ │ │ └── view-traffic │ │ │ │ │ └── _index.md │ │ │ ├── logging │ │ │ │ ├── _index.md │ │ │ │ ├── elasticsearch │ │ │ │ │ └── _index.md │ │ │ │ ├── fluentd │ │ │ │ │ └── _index.md │ │ │ │ ├── kafka │ │ │ │ │ └── _index.md │ │ │ │ ├── splunk │ │ │ │ │ └── _index.md │ │ │ │ └── syslog │ │ │ │ │ └── _index.md │ │ │ ├── notifiers │ │ │ │ └── _index.md │ │ │ └── opa-gatekeeper │ │ │ │ └── _index.md │ │ ├── upgrading-kubernetes │ │ │ └── _index.md │ │ ├── volumes-and-storage │ │ │ ├── _index.md │ │ │ ├── attaching-existing-storage │ │ │ │ └── _index.md │ │ │ ├── examples │ │ │ │ ├── _index.md │ │ │ │ ├── ebs │ │ │ │ │ └── _index.md │ │ │ │ ├── nfs │ │ │ │ │ └── _index.md │ │ │ │ └── vsphere │ │ │ │ │ └── _index.md │ │ │ ├── glusterfs-volumes │ │ │ │ └── _index.md │ │ │ ├── how-storage-works │ │ │ │ └── _index.md │ │ │ ├── iscsi-volumes │ │ │ │ └── _index.md │ │ │ └── provisioning-new-storage │ │ │ │ └── _index.md │ │ └── webhooks │ │ │ └── _index.md │ ├── cluster-provisioning │ │ ├── _index.md │ │ ├── hosted-kubernetes-clusters │ │ │ ├── _index.md │ │ │ ├── aks │ │ │ │ └── _index.md │ │ │ ├── eks │ │ │ │ ├── _index.md │ │ │ │ └── permission │ │ │ │ │ └── _index.md │ │ │ └── gke │ │ │ │ ├── _index.md │ │ │ │ ├── config-reference │ │ │ │ └── _index.md │ │ │ │ └── private-clusters │ │ │ │ └── _index.md │ │ ├── node-requirements │ │ │ └── _index.md │ │ ├── production │ │ │ ├── _index.md │ │ │ ├── nodes-and-roles │ │ │ │ └── _index.md │ │ │ └── recommended-architecture │ │ │ │ └── _index.md │ │ ├── registered-clusters │ │ │ └── _index.md │ │ ├── rke-clusters │ │ │ ├── _index.md │ │ │ ├── cloud-providers │ │ │ │ ├── _index.md │ │ │ │ ├── amazon │ │ │ │ │ └── _index.md │ │ │ │ ├── azure │ │ │ │ │ └── _index.md │ │ │ │ ├── gce │ │ │ │ │ └── _index.md │ │ │ │ └── vsphere │ │ │ │ │ └── _index.md │ │ │ ├── custom-nodes │ │ │ │ ├── _index.md │ │ │ │ └── agent-options │ │ │ │ │ └── _index.md │ │ │ ├── node-pools │ │ │ │ ├── _index.md │ │ │ │ ├── azure │ │ │ │ │ ├── _index.md │ │ │ │ │ └── azure-node-template-config │ │ │ │ │ │ └── _index.md │ │ │ │ ├── digital-ocean │ │ │ │ │ ├── _index.md │ │ │ │ │ └── digital-ocean-node-template-config │ │ │ │ │ │ └── _index.md │ │ │ │ ├── ec2 │ │ │ │ │ ├── _index.md │ │ │ │ │ └── ec2-node-template-config │ │ │ │ │ │ └── _index.md │ │ │ │ └── vsphere │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── provisioning-vsphere-clusters │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── creating-credentials │ │ │ │ │ │ └── _index.md │ │ │ │ │ ├── enabling-uuids │ │ │ │ │ │ └── _index.md │ │ │ │ │ └── node-template-reference │ │ │ │ │ │ └── _index.md │ │ │ │ │ └── vsphere-node-template-config │ │ │ │ │ ├── 2.0.4 │ │ │ │ │ └── _index.md │ │ │ │ │ ├── 2.2.0 │ │ │ │ │ └── _index.md │ │ │ │ │ ├── 2.3.0 │ │ │ │ │ └── _index.md │ │ │ │ │ ├── 2.3.3 │ │ │ │ │ └── _index.md │ │ │ │ │ ├── _index.md │ │ │ │ │ └── before-2.0.4 │ │ │ │ │ └── _index.md │ │ │ ├── options │ │ │ │ ├── _index.md │ │ │ │ └── pod-security-policies │ │ │ │ │ └── _index.md │ │ │ ├── rancher-agents │ │ │ │ └── _index.md │ │ │ └── windows-clusters │ │ │ │ ├── _index.md │ │ │ │ ├── host-gateway-requirements │ │ │ │ └── _index.md │ │ │ │ └── windows-parity │ │ │ │ └── _index.md │ │ └── syncing │ │ │ └── _index.md │ ├── contributing │ │ ├── _index.md │ │ └── community-governance │ │ │ └── _index.md │ ├── deploy-across-clusters │ │ ├── _index.md │ │ ├── fleet │ │ │ ├── _index.md │ │ │ ├── architecture │ │ │ │ └── _index.md │ │ │ ├── proxy │ │ │ │ └── _index.md │ │ │ └── windows │ │ │ │ └── _index.md │ │ └── multi-cluster-apps │ │ │ └── _index.md │ ├── faq │ │ ├── _index.md │ │ ├── deprecated-features-25x │ │ │ └── _index.md │ │ ├── etcd │ │ │ └── _index.md │ │ ├── install │ │ │ └── _index.md │ │ ├── kubectl │ │ │ └── _index.md │ │ ├── networking │ │ │ ├── _index.md │ │ │ ├── cni-providers │ │ │ │ └── _index.md │ │ │ └── mtu │ │ │ │ └── _index.md │ │ ├── removing-rancher │ │ │ └── _index.md │ │ ├── security │ │ │ └── _index.md │ │ ├── technical │ │ │ └── _index.md │ │ ├── telemetry │ │ │ └── _index.md │ │ ├── upgrade │ │ │ └── _index.md │ │ └── upgrades-to-2x │ │ │ └── _index.md │ ├── helm-charts │ │ └── _index.md │ ├── installation │ │ ├── _index.md │ │ ├── install-rancher-on-k8s │ │ │ ├── _index.md │ │ │ ├── aks │ │ │ │ └── _index.md │ │ │ ├── amazon-eks │ │ │ │ └── _index.md │ │ │ ├── chart-options │ │ │ │ └── _index.md │ │ │ ├── gke │ │ │ │ └── _index.md │ │ │ ├── rollbacks │ │ │ │ └── _index.md │ │ │ └── upgrades │ │ │ │ ├── _index.md │ │ │ │ └── air-gap-upgrade │ │ │ │ └── _index.md │ │ ├── other-installation-methods │ │ │ ├── _index.md │ │ │ ├── air-gap │ │ │ │ ├── _index.md │ │ │ │ ├── install-rancher │ │ │ │ │ ├── _index.md │ │ │ │ │ └── docker-install-commands │ │ │ │ │ │ └── _index.md │ │ │ │ ├── launch-kubernetes │ │ │ │ │ └── _index.md │ │ │ │ ├── populate-private-registry │ │ │ │ │ └── _index.md │ │ │ │ └── prepare-nodes │ │ │ │ │ └── _index.md │ │ │ ├── behind-proxy │ │ │ │ ├── _index.md │ │ │ │ ├── install-rancher │ │ │ │ │ └── _index.md │ │ │ │ ├── launch-kubernetes │ │ │ │ │ └── _index.md │ │ │ │ └── prepare-nodes │ │ │ │ │ └── _index.md │ │ │ ├── install-rancher-on-linux │ │ │ │ ├── _index.md │ │ │ │ ├── rancherd-configuration │ │ │ │ │ └── _index.md │ │ │ │ ├── rollbacks │ │ │ │ │ └── _index.md │ │ │ │ └── upgrades │ │ │ │ │ └── _index.md │ │ │ ├── single-node-docker │ │ │ │ ├── _index.md │ │ │ │ ├── advanced │ │ │ │ │ └── _index.md │ │ │ │ ├── proxy │ │ │ │ │ └── _index.md │ │ │ │ ├── single-node-rollbacks │ │ │ │ │ └── _index.md │ │ │ │ ├── single-node-upgrades │ │ │ │ │ └── _index.md │ │ │ │ └── troubleshooting │ │ │ │ │ └── _index.md │ │ │ └── troubleshooting │ │ │ │ └── _index.md │ │ ├── requirements │ │ │ ├── _index.md │ │ │ ├── installing-docker │ │ │ │ └── _index.md │ │ │ └── ports │ │ │ │ └── _index.md │ │ └── resources │ │ │ ├── F5-7-layer-loadbalancer │ │ │ └── _index.md │ │ │ ├── F5-WAF │ │ │ └── _index.md │ │ │ ├── _index.md │ │ │ ├── advanced │ │ │ ├── _index.md │ │ │ ├── api-audit-log │ │ │ │ └── _index.md │ │ │ ├── arm64-platform │ │ │ │ └── _index.md │ │ │ ├── etcd │ │ │ │ └── _index.md │ │ │ ├── firewall │ │ │ │ └── _index.md │ │ │ ├── self-signed-ssl │ │ │ │ └── _index.md │ │ │ └── single-node-install-external-lb │ │ │ │ └── _index.md │ │ │ ├── chart-options │ │ │ └── _index.md │ │ │ ├── choosing-version │ │ │ └── _index.md │ │ │ ├── custom-ca-root-certificate │ │ │ └── _index.md │ │ │ ├── feature-flags │ │ │ ├── _index.md │ │ │ ├── enable-not-default-storage-drivers │ │ │ │ └── _index.md │ │ │ └── istio-virtual-service-ui │ │ │ │ └── _index.md │ │ │ ├── helm-version │ │ │ └── _index.md │ │ │ ├── installing-docker │ │ │ └── _index.md │ │ │ ├── k8s-tutorials │ │ │ ├── _index.md │ │ │ ├── ha-rke │ │ │ │ └── _index.md │ │ │ ├── ha-rke2 │ │ │ │ └── _index.md │ │ │ ├── ha-with-external-db │ │ │ │ └── _index.md │ │ │ ├── how-ha-works │ │ │ │ └── _index.md │ │ │ └── infrastructure-tutorials │ │ │ │ ├── _index.md │ │ │ │ ├── ec2-node │ │ │ │ └── _index.md │ │ │ │ ├── infra-for-ha-with-external-db │ │ │ │ └── _index.md │ │ │ │ ├── infra-for-ha │ │ │ │ └── _index.md │ │ │ │ ├── infra-for-rke2-ha │ │ │ │ └── _index.md │ │ │ │ ├── nginx │ │ │ │ └── _index.md │ │ │ │ ├── nlb │ │ │ │ └── _index.md │ │ │ │ └── rds │ │ │ │ └── _index.md │ │ │ ├── local-system-charts │ │ │ └── _index.md │ │ │ ├── tls-secrets │ │ │ └── _index.md │ │ │ ├── tls-settings │ │ │ └── _index.md │ │ │ ├── troubleshooting │ │ │ └── _index.md │ │ │ ├── update-ca-cert │ │ │ └── _index.md │ │ │ └── upgrading-cert-manager │ │ │ ├── _index.md │ │ │ └── helm-2-instructions │ │ │ └── _index.md │ ├── istio │ │ ├── _index.md │ │ ├── configuration-reference │ │ │ ├── _index.md │ │ │ ├── canal-and-project-network │ │ │ │ └── _index.md │ │ │ ├── enable-istio-with-psp │ │ │ │ └── _index.md │ │ │ ├── rke2 │ │ │ │ └── _index.md │ │ │ └── selectors-and-scrape │ │ │ │ └── _index.md │ │ ├── disabling-istio │ │ │ └── _index.md │ │ ├── rbac │ │ │ └── _index.md │ │ ├── resources │ │ │ └── _index.md │ │ └── setup │ │ │ ├── _index.md │ │ │ ├── deploy-workloads │ │ │ └── _index.md │ │ │ ├── enable-istio-in-cluster │ │ │ └── _index.md │ │ │ ├── enable-istio-in-namespace │ │ │ └── _index.md │ │ │ ├── gateway │ │ │ └── _index.md │ │ │ ├── set-up-traffic-management │ │ │ └── _index.md │ │ │ └── view-traffic │ │ │ └── _index.md │ ├── k8s-in-rancher │ │ ├── _index.md │ │ ├── certificates │ │ │ └── _index.md │ │ ├── configmaps │ │ │ └── _index.md │ │ ├── horitzontal-pod-autoscaler │ │ │ ├── _index.md │ │ │ ├── hpa-background │ │ │ │ └── _index.md │ │ │ ├── hpa-for-rancher-before-2_0_7 │ │ │ │ └── _index.md │ │ │ ├── manage-hpa-with-kubectl │ │ │ │ └── _index.md │ │ │ ├── manage-hpa-with-rancher-ui │ │ │ │ └── _index.md │ │ │ └── testing-hpa │ │ │ │ └── _index.md │ │ ├── load-balancers-and-ingress │ │ │ ├── _index.md │ │ │ ├── ingress │ │ │ │ └── _index.md │ │ │ └── load-balancers │ │ │ │ └── _index.md │ │ ├── registries │ │ │ └── _index.md │ │ ├── secrets │ │ │ └── _index.md │ │ ├── service-discovery │ │ │ └── _index.md │ │ └── workloads │ │ │ ├── _index.md │ │ │ ├── add-a-sidecar │ │ │ └── _index.md │ │ │ ├── deploy-workloads │ │ │ └── _index.md │ │ │ ├── rollback-workloads │ │ │ └── _index.md │ │ │ └── upgrade-workloads │ │ │ └── _index.md │ ├── logging │ │ ├── _index.md │ │ ├── architecture │ │ │ └── _index.md │ │ ├── custom-resource-config │ │ │ ├── _index.md │ │ │ ├── flows │ │ │ │ └── _index.md │ │ │ └── outputs │ │ │ │ └── _index.md │ │ ├── helm-chart-options │ │ │ └── _index.md │ │ ├── migrating │ │ │ └── _index.md │ │ ├── rbac │ │ │ └── _index.md │ │ └── taints-tolerations │ │ │ └── _index.md │ ├── longhorn │ │ └── _index.md │ ├── monitoring-alerting │ │ ├── _index.md │ │ ├── configuration │ │ │ ├── _index.md │ │ │ ├── advanced │ │ │ │ ├── _index.md │ │ │ │ ├── alertmanager │ │ │ │ │ └── _index.md │ │ │ │ ├── prometheus │ │ │ │ │ └── _index.md │ │ │ │ └── prometheusrules │ │ │ │ │ └── _index.md │ │ │ ├── examples │ │ │ │ └── _index.md │ │ │ ├── helm-chart-options │ │ │ │ └── _index.md │ │ │ ├── receiver │ │ │ │ └── _index.md │ │ │ ├── route │ │ │ │ └── _index.md │ │ │ └── servicemonitor-podmonitor │ │ │ │ └── _index.md │ │ ├── dashboards │ │ │ └── _index.md │ │ ├── expression │ │ │ └── _index.md │ │ ├── guides │ │ │ ├── _index.md │ │ │ ├── customize-grafana │ │ │ │ └── _index.md │ │ │ ├── enable-monitoring │ │ │ │ └── _index.md │ │ │ ├── memory-usage │ │ │ │ └── _index.md │ │ │ ├── migrating │ │ │ │ └── _index.md │ │ │ ├── monitoring-workloads │ │ │ │ └── _index.md │ │ │ ├── persist-grafana │ │ │ │ └── _index.md │ │ │ └── uninstall │ │ │ │ └── _index.md │ │ ├── how-monitoring-works │ │ │ └── _index.md │ │ ├── rbac │ │ │ └── _index.md │ │ └── windows-clusters │ │ │ └── _index.md │ ├── opa-gatekeeper │ │ └── _index.md │ ├── overview │ │ ├── _index.md │ │ ├── architecture-recommendations │ │ │ └── _index.md │ │ ├── architecture │ │ │ └── _index.md │ │ ├── concepts │ │ │ └── _index.md │ │ ├── glossary │ │ │ └── _index.md │ │ └── rancher-glossary │ │ │ └── _index.md │ ├── pipelines │ │ ├── _index.md │ │ ├── concepts │ │ │ └── _index.md │ │ ├── config │ │ │ └── _index.md │ │ ├── example-repos │ │ │ └── _index.md │ │ ├── example │ │ │ └── _index.md │ │ └── storage │ │ │ └── _index.md │ ├── project-admin │ │ ├── _index.md │ │ ├── namespaces │ │ │ └── _index.md │ │ ├── pipelines │ │ │ └── _index.md │ │ ├── pod-security-policies │ │ │ └── _index.md │ │ ├── project-members │ │ │ └── _index.md │ │ ├── resource-quotas │ │ │ ├── _index.md │ │ │ ├── override-container-default │ │ │ │ └── _index.md │ │ │ ├── override-namespace-default │ │ │ │ └── _index.md │ │ │ ├── quota-type-reference │ │ │ │ └── _index.md │ │ │ └── quotas-for-projects │ │ │ │ └── _index.md │ │ └── tools │ │ │ └── _index.md │ ├── quick-start-guide │ │ ├── _index.md │ │ ├── cli │ │ │ └── _index.md │ │ ├── deployment │ │ │ ├── _index.md │ │ │ ├── amazon-aws-qs │ │ │ │ └── _index.md │ │ │ ├── digital-ocean-qs │ │ │ │ └── _index.md │ │ │ ├── google-gcp-qs │ │ │ │ └── _index.md │ │ │ ├── microsoft-azure-qs │ │ │ │ └── _index.md │ │ │ ├── quickstart-manual-setup │ │ │ │ └── _index.md │ │ │ └── quickstart-vagrant │ │ │ │ └── _index.md │ │ └── workload │ │ │ ├── _index.md │ │ │ ├── quickstart-deploy-workload-ingress │ │ │ └── _index.md │ │ │ └── quickstart-deploy-workload-nodeport │ │ │ └── _index.md │ ├── releases │ │ ├── v2.5.0.md │ │ ├── v2.5.1.md │ │ ├── v2.5.10.md │ │ ├── v2.5.11.md │ │ ├── v2.5.12.md │ │ ├── v2.5.13.md │ │ ├── v2.5.14.md │ │ ├── v2.5.15.md │ │ ├── v2.5.16.md │ │ ├── v2.5.2.md │ │ ├── v2.5.3.md │ │ ├── v2.5.4.md │ │ ├── v2.5.5.md │ │ ├── v2.5.6.md │ │ ├── v2.5.7.md │ │ ├── v2.5.8.md │ │ └── v2.5.9.md │ ├── security │ │ ├── _index.md │ │ ├── best-practices │ │ │ └── _index.md │ │ ├── cve │ │ │ └── _index.md │ │ ├── rancher-2.5 │ │ │ ├── 1.5-benchmark-2.5 │ │ │ │ └── _index.md │ │ │ ├── 1.5-hardening-2.5 │ │ │ │ └── _index.md │ │ │ ├── 1.6-benchmark-2.5 │ │ │ │ └── _index.md │ │ │ ├── 1.6-hardening-2.5 │ │ │ │ └── _index.md │ │ │ └── _index.md │ │ ├── security-scan │ │ │ └── _index.md │ │ └── selinux │ │ │ └── _index.md │ ├── system-tools │ │ └── _index.md │ ├── trending-topics │ │ ├── _index.md │ │ ├── certificate-rotation │ │ │ └── _index.md │ │ ├── cleaning-cluster-nodes │ │ │ └── _index.md │ │ ├── cli │ │ │ └── _index.md │ │ ├── deployment │ │ │ └── _index.md │ │ ├── install-rancher-on-k8s │ │ │ └── _index.md │ │ ├── install-rancher-on-linux │ │ │ └── _index.md │ │ ├── quickstart-manual-setup │ │ │ └── _index.md │ │ ├── requirements │ │ │ └── _index.md │ │ └── single-node-docker │ │ │ └── _index.md │ ├── troubleshooting │ │ ├── _index.md │ │ ├── dns │ │ │ └── _index.md │ │ ├── imported-clusters │ │ │ └── _index.md │ │ ├── kubernetes-components │ │ │ ├── _index.md │ │ │ ├── controlplane │ │ │ │ └── _index.md │ │ │ ├── etcd │ │ │ │ └── _index.md │ │ │ ├── nginx-proxy │ │ │ │ └── _index.md │ │ │ └── worker-and-generic │ │ │ │ └── _index.md │ │ ├── kubernetes-resources │ │ │ └── _index.md │ │ ├── logging │ │ │ └── _index.md │ │ ├── networking │ │ │ └── _index.md │ │ └── rancherha │ │ │ └── _index.md │ └── user-settings │ │ ├── _index.md │ │ ├── api-keys │ │ └── _index.md │ │ ├── cloud-credentials │ │ └── _index.md │ │ ├── node-templates │ │ └── _index.md │ │ └── preferences │ │ └── _index.md ├── rancher2 │ ├── _index.md │ ├── admin-settings │ │ ├── _index.md │ │ ├── authentication │ │ │ ├── _index.md │ │ │ ├── ad │ │ │ │ └── _index.md │ │ │ ├── azure-ad │ │ │ │ └── _index.md │ │ │ ├── freeipa │ │ │ │ └── _index.md │ │ │ ├── github │ │ │ │ └── _index.md │ │ │ ├── google │ │ │ │ └── _index.md │ │ │ ├── keycloak │ │ │ │ └── _index.md │ │ │ ├── local │ │ │ │ └── _index.md │ │ │ ├── microsoft-adfs │ │ │ │ ├── _index.md │ │ │ │ ├── microsoft-adfs-setup │ │ │ │ │ └── _index.md │ │ │ │ └── rancher-adfs-setup │ │ │ │ │ └── _index.md │ │ │ ├── okta │ │ │ │ └── _index.md │ │ │ ├── openldap │ │ │ │ ├── _index.md │ │ │ │ └── openldap-config │ │ │ │ │ └── _index.md │ │ │ ├── ping-federate │ │ │ │ └── _index.md │ │ │ ├── shibboleth │ │ │ │ ├── _index.md │ │ │ │ └── about │ │ │ │ │ └── _index.md │ │ │ └── user-groups │ │ │ │ └── _index.md │ │ ├── config-private-registry │ │ │ └── _index.md │ │ ├── drivers │ │ │ ├── _index.md │ │ │ ├── cluster-drivers │ │ │ │ └── _index.md │ │ │ ├── k8s-metadata │ │ │ │ └── _index.md │ │ │ └── node-drivers │ │ │ │ └── _index.md │ │ ├── pod-security-policies │ │ │ └── _index.md │ │ ├── rbac │ │ │ ├── _index.md │ │ │ ├── cluster-project-roles │ │ │ │ └── _index.md │ │ │ ├── default-custom-roles │ │ │ │ └── _index.md │ │ │ ├── global-permissions │ │ │ │ └── _index.md │ │ │ └── locked-roles │ │ │ │ └── _index.md │ │ ├── replace-ip-domain │ │ │ └── _index.md │ │ └── rke-templates │ │ │ ├── _index.md │ │ │ ├── applying-templates │ │ │ └── _index.md │ │ │ ├── creating-and-revising │ │ │ └── _index.md │ │ │ ├── creator-permissions │ │ │ └── _index.md │ │ │ ├── enforcement │ │ │ └── _index.md │ │ │ ├── example-scenarios │ │ │ └── _index.md │ │ │ ├── example-yaml │ │ │ └── _index.md │ │ │ ├── overrides │ │ │ └── _index.md │ │ │ ├── rke-templates-and-hardware │ │ │ └── _index.md │ │ │ └── template-access-and-sharing │ │ │ └── _index.md │ ├── api │ │ ├── _index.md │ │ ├── api-custom-cluster │ │ │ └── _index.md │ │ ├── api-import-cluster │ │ │ └── _index.md │ │ ├── api-resources │ │ │ └── _index.md │ │ └── api-tokens │ │ │ └── _index.md │ ├── backups │ │ ├── _index.md │ │ ├── backup │ │ │ ├── _index.md │ │ │ ├── docker-backups │ │ │ │ └── _index.md │ │ │ ├── ha-backups │ │ │ │ └── _index.md │ │ │ └── k3s-backups │ │ │ │ └── _index.md │ │ └── restore │ │ │ ├── _index.md │ │ │ ├── docker-restore │ │ │ └── _index.md │ │ │ ├── ha-restore │ │ │ ├── 2.0-2.1 │ │ │ │ └── _index.md │ │ │ └── _index.md │ │ │ └── k3s-restore │ │ │ └── _index.md │ ├── best-practices │ │ ├── _index.md │ │ ├── containers │ │ │ └── _index.md │ │ ├── deployment-strategies │ │ │ └── _index.md │ │ ├── deployment-types │ │ │ └── _index.md │ │ ├── management │ │ │ └── _index.md │ │ └── use-in-china │ │ │ └── _index.md │ ├── cli │ │ └── _index.md │ ├── cluster-admin │ │ ├── _index.md │ │ ├── backing-up-etcd │ │ │ └── _index.md │ │ ├── certificate-rotation │ │ │ └── _index.md │ │ ├── cleaning-cluster-nodes │ │ │ └── _index.md │ │ ├── cloning-clusters │ │ │ └── _index.md │ │ ├── cluster-access │ │ │ ├── _index.md │ │ │ ├── ace │ │ │ │ └── _index.md │ │ │ ├── cluster-members │ │ │ │ └── _index.md │ │ │ └── kubectl │ │ │ │ └── _index.md │ │ ├── cluster-autoscaler │ │ │ ├── _index.md │ │ │ └── amazon │ │ │ │ └── _index.md │ │ ├── editing-clusters │ │ │ └── _index.md │ │ ├── etcd-compact │ │ │ └── _index.md │ │ ├── kubectl-delete-evicted-pods │ │ │ └── _index.md │ │ ├── nodes │ │ │ └── _index.md │ │ ├── pod-security-policy │ │ │ └── _index.md │ │ ├── projects-and-namespaces │ │ │ └── _index.md │ │ ├── replace-ca │ │ │ └── _index.md │ │ ├── restore-kubecfg │ │ │ └── _index.md │ │ ├── restore-rkestate │ │ │ └── _index.md │ │ ├── restoring-etcd │ │ │ └── _index.md │ │ ├── single-to-ha │ │ │ └── _index.md │ │ ├── tools │ │ │ ├── _index.md │ │ │ ├── cis-scans │ │ │ │ ├── _index.md │ │ │ │ └── skipped-tests │ │ │ │ │ └── _index.md │ │ │ ├── cluster-alerts │ │ │ │ ├── _index.md │ │ │ │ └── default-alerts │ │ │ │ │ └── _index.md │ │ │ ├── cluster-logging │ │ │ │ ├── _index.md │ │ │ │ ├── elasticsearch │ │ │ │ │ └── _index.md │ │ │ │ ├── fluentd │ │ │ │ │ └── _index.md │ │ │ │ ├── kafka │ │ │ │ │ └── _index.md │ │ │ │ ├── splunk │ │ │ │ │ └── _index.md │ │ │ │ └── syslog │ │ │ │ │ └── _index.md │ │ │ ├── cluster-monitoring │ │ │ │ ├── _index.md │ │ │ │ ├── cluster-metrics │ │ │ │ │ ├── _index.md │ │ │ │ │ └── custom-metrics │ │ │ │ │ │ └── _index.md │ │ │ │ ├── custom-metrics │ │ │ │ │ └── _index.md │ │ │ │ ├── expression │ │ │ │ │ └── _index.md │ │ │ │ ├── project-monitoring │ │ │ │ │ └── _index.md │ │ │ │ ├── prometheus │ │ │ │ │ └── _index.md │ │ │ │ └── viewing-metrics │ │ │ │ │ └── _index.md │ │ │ ├── istio │ │ │ │ ├── _index.md │ │ │ │ ├── disabling-istio │ │ │ │ │ └── _index.md │ │ │ │ ├── rbac │ │ │ │ │ └── _index.md │ │ │ │ ├── release-notes │ │ │ │ │ └── _index.md │ │ │ │ ├── resources │ │ │ │ │ └── _index.md │ │ │ │ └── setup │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── deploy-workloads │ │ │ │ │ └── _index.md │ │ │ │ │ ├── enable-istio-in-cluster │ │ │ │ │ ├── _index.md │ │ │ │ │ └── enable-istio-with-psp │ │ │ │ │ │ └── _index.md │ │ │ │ │ ├── enable-istio-in-namespace │ │ │ │ │ └── _index.md │ │ │ │ │ ├── gateway │ │ │ │ │ └── _index.md │ │ │ │ │ ├── node-selectors │ │ │ │ │ └── _index.md │ │ │ │ │ ├── set-up-traffic-management │ │ │ │ │ └── _index.md │ │ │ │ │ └── view-traffic │ │ │ │ │ └── _index.md │ │ │ ├── notifiers │ │ │ │ └── _index.md │ │ │ └── opa-gatekeeper │ │ │ │ └── _index.md │ │ ├── upgrading-kubernetes │ │ │ └── _index.md │ │ ├── volumes-and-storage │ │ │ ├── _index.md │ │ │ ├── attaching-existing-storage │ │ │ │ └── _index.md │ │ │ ├── examples │ │ │ │ ├── _index.md │ │ │ │ ├── ebs │ │ │ │ │ └── _index.md │ │ │ │ ├── nfs │ │ │ │ │ └── _index.md │ │ │ │ └── vsphere │ │ │ │ │ └── _index.md │ │ │ ├── glusterfs-volumes │ │ │ │ └── _index.md │ │ │ ├── how-storage-works │ │ │ │ └── _index.md │ │ │ ├── iscsi-volumes │ │ │ │ └── _index.md │ │ │ └── provisioning-new-storage │ │ │ │ └── _index.md │ │ └── webhooks │ │ │ └── _index.md │ ├── cluster-provisioning │ │ ├── _index.md │ │ ├── hosted-kubernetes-clusters │ │ │ ├── _index.md │ │ │ ├── ack │ │ │ │ └── _index.md │ │ │ ├── aks │ │ │ │ └── _index.md │ │ │ ├── cce │ │ │ │ └── _index.md │ │ │ ├── eks │ │ │ │ └── _index.md │ │ │ ├── gke │ │ │ │ └── _index.md │ │ │ └── tke │ │ │ │ └── _index.md │ │ ├── imported-clusters │ │ │ └── _index.md │ │ ├── node-requirements │ │ │ └── _index.md │ │ ├── production │ │ │ ├── _index.md │ │ │ ├── nodes-and-roles │ │ │ │ └── _index.md │ │ │ └── recommended-architecture │ │ │ │ └── _index.md │ │ └── rke-clusters │ │ │ ├── _index.md │ │ │ ├── cloud-providers │ │ │ ├── _index.md │ │ │ ├── amazon │ │ │ │ └── _index.md │ │ │ ├── azure │ │ │ │ └── _index.md │ │ │ ├── gce │ │ │ │ └── _index.md │ │ │ └── vsphere │ │ │ │ └── _index.md │ │ │ ├── custom-nodes │ │ │ ├── _index.md │ │ │ └── agent-options │ │ │ │ └── _index.md │ │ │ ├── node-pools │ │ │ ├── _index.md │ │ │ ├── azure │ │ │ │ ├── _index.md │ │ │ │ └── azure-node-template-config │ │ │ │ │ └── _index.md │ │ │ ├── digital-ocean │ │ │ │ ├── _index.md │ │ │ │ └── digital-ocean-node-template-config │ │ │ │ │ └── _index.md │ │ │ ├── ec2 │ │ │ │ ├── _index.md │ │ │ │ └── ec2-node-template-config │ │ │ │ │ └── _index.md │ │ │ └── vsphere │ │ │ │ ├── _index.md │ │ │ │ ├── provisioning-vsphere-clusters │ │ │ │ ├── _index.md │ │ │ │ ├── creating-credentials │ │ │ │ │ └── _index.md │ │ │ │ ├── enabling-uuids │ │ │ │ │ └── _index.md │ │ │ │ └── node-template-reference │ │ │ │ │ └── _index.md │ │ │ │ └── vsphere-node-template-config │ │ │ │ ├── 2.0.4 │ │ │ │ └── _index.md │ │ │ │ ├── 2.2.0 │ │ │ │ └── _index.md │ │ │ │ ├── 2.3.0 │ │ │ │ └── _index.md │ │ │ │ ├── 2.3.3 │ │ │ │ └── _index.md │ │ │ │ ├── _index.md │ │ │ │ └── before-2.0.4 │ │ │ │ └── _index.md │ │ │ ├── options │ │ │ ├── _index.md │ │ │ └── pod-security-policies │ │ │ │ └── _index.md │ │ │ ├── rancher-agents │ │ │ └── _index.md │ │ │ └── windows-clusters │ │ │ ├── _index.md │ │ │ ├── docs-for-2.1-and-2.2 │ │ │ └── _index.md │ │ │ └── host-gateway-requirements │ │ │ └── _index.md │ ├── contributing │ │ └── _index.md │ ├── deploy-across-clusters │ │ └── _index.md │ ├── faq │ │ ├── _index.md │ │ ├── etcd │ │ │ └── _index.md │ │ ├── install │ │ │ └── _index.md │ │ ├── kubectl │ │ │ └── _index.md │ │ ├── networking │ │ │ ├── _index.md │ │ │ ├── cni-providers │ │ │ │ └── _index.md │ │ │ └── mtu │ │ │ │ └── _index.md │ │ ├── removing-rancher │ │ │ └── _index.md │ │ ├── security │ │ │ └── _index.md │ │ ├── technical │ │ │ └── _index.md │ │ ├── telemetry │ │ │ └── _index.md │ │ └── upgrades-to-2x │ │ │ └── _index.md │ ├── helm-charts │ │ ├── _index.md │ │ ├── adding-catalogs │ │ │ └── _index.md │ │ ├── built-in │ │ │ └── _index.md │ │ ├── catalog-config │ │ │ └── _index.md │ │ ├── creating-apps │ │ │ └── _index.md │ │ ├── faq │ │ │ ├── etcd │ │ │ │ └── _index.md │ │ │ ├── install │ │ │ │ └── _index.md │ │ │ ├── kubectl │ │ │ │ └── _index.md │ │ │ ├── networking │ │ │ │ ├── _index.md │ │ │ │ ├── cni-providers │ │ │ │ │ └── _index.md │ │ │ │ └── mtu │ │ │ │ │ └── _index.md │ │ │ ├── removing-rancher │ │ │ │ └── _index.md │ │ │ ├── security │ │ │ │ └── _index.md │ │ │ ├── technical │ │ │ │ └── _index.md │ │ │ ├── telemetry │ │ │ │ └── _index.md │ │ │ └── upgrades-to-2x │ │ │ │ └── _index.md │ │ ├── globaldns │ │ │ └── _index.md │ │ ├── launching-apps │ │ │ └── _index.md │ │ ├── managing-apps │ │ │ └── _index.md │ │ ├── multi-cluster-apps │ │ │ └── _index.md │ │ └── tutorial │ │ │ └── _index.md │ ├── installation │ │ ├── _index.md │ │ ├── install-rancher-on-k8s │ │ │ ├── _index.md │ │ │ ├── amazon-eks │ │ │ │ └── _index.md │ │ │ ├── chart-options │ │ │ │ └── _index.md │ │ │ ├── rollbacks │ │ │ │ └── _index.md │ │ │ └── upgrades │ │ │ │ ├── _index.md │ │ │ │ ├── ha │ │ │ │ ├── _index.md │ │ │ │ └── helm2 │ │ │ │ │ └── _index.md │ │ │ │ ├── migrating-from-rke-add-on │ │ │ │ └── _index.md │ │ │ │ ├── namespace-migration │ │ │ │ └── _index.md │ │ │ │ └── single-node │ │ │ │ └── _index.md │ │ ├── other-installation-methods │ │ │ ├── _index.md │ │ │ ├── air-gap │ │ │ │ ├── _index.md │ │ │ │ ├── install-rancher │ │ │ │ │ └── _index.md │ │ │ │ ├── launch-kubernetes │ │ │ │ │ └── _index.md │ │ │ │ ├── populate-private-registry │ │ │ │ │ └── _index.md │ │ │ │ └── prepare-nodes │ │ │ │ │ └── _index.md │ │ │ ├── behind-proxy │ │ │ │ ├── _index.md │ │ │ │ ├── install-rancher │ │ │ │ │ └── _index.md │ │ │ │ ├── launch-kubernetes │ │ │ │ │ └── _index.md │ │ │ │ └── prepare-nodes │ │ │ │ │ └── _index.md │ │ │ ├── single-node-docker │ │ │ │ ├── _index.md │ │ │ │ ├── advanced │ │ │ │ │ └── _index.md │ │ │ │ ├── proxy │ │ │ │ │ └── _index.md │ │ │ │ ├── single-node-rollbacks │ │ │ │ │ └── _index.md │ │ │ │ ├── single-node-upgrades │ │ │ │ │ └── _index.md │ │ │ │ └── troubleshooting │ │ │ │ │ └── _index.md │ │ │ └── troubleshooting │ │ │ │ └── _index.md │ │ ├── requirements │ │ │ ├── _index.md │ │ │ ├── installing-docker │ │ │ │ └── _index.md │ │ │ └── ports │ │ │ │ └── _index.md │ │ └── resources │ │ │ ├── F5-7-layer-loadbalancer │ │ │ └── _index.md │ │ │ ├── F5-WAF │ │ │ └── _index.md │ │ │ ├── _index.md │ │ │ ├── advanced │ │ │ ├── _index.md │ │ │ ├── air-gap-helm2 │ │ │ │ ├── _index.md │ │ │ │ ├── install-rancher │ │ │ │ │ └── _index.md │ │ │ │ ├── launch-kubernetes │ │ │ │ │ └── _index.md │ │ │ │ ├── populate-private-registry │ │ │ │ │ └── _index.md │ │ │ │ └── prepare-nodes │ │ │ │ │ └── _index.md │ │ │ ├── api-audit-log │ │ │ │ └── _index.md │ │ │ ├── arm64-platform │ │ │ │ └── _index.md │ │ │ ├── cluster-yml-templates │ │ │ │ ├── 3-node-certificate-recognizedca │ │ │ │ │ └── _index.md │ │ │ │ ├── 3-node-certificate │ │ │ │ │ └── _index.md │ │ │ │ ├── 3-node-externalssl-certificate │ │ │ │ │ └── _index.md │ │ │ │ ├── 3-node-externalssl-recognizedca │ │ │ │ │ └── _index.md │ │ │ │ └── _index.md │ │ │ ├── etcd │ │ │ │ └── _index.md │ │ │ ├── firewall │ │ │ │ └── _index.md │ │ │ ├── helm2 │ │ │ │ ├── _index.md │ │ │ │ ├── create-nodes-lb │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── nginx │ │ │ │ │ │ └── _index.md │ │ │ │ │ └── nlb │ │ │ │ │ │ └── _index.md │ │ │ │ ├── helm-init │ │ │ │ │ ├── _index.md │ │ │ │ │ └── troubleshooting │ │ │ │ │ │ └── _index.md │ │ │ │ ├── helm-rancher │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── chart-options │ │ │ │ │ │ └── _index.md │ │ │ │ │ ├── tls-secrets │ │ │ │ │ │ └── _index.md │ │ │ │ │ └── troubleshooting │ │ │ │ │ │ └── _index.md │ │ │ │ ├── kubernetes-rke │ │ │ │ │ ├── _index.md │ │ │ │ │ └── troubleshooting │ │ │ │ │ │ └── _index.md │ │ │ │ └── rke-add-on │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── api-auditing │ │ │ │ │ └── _index.md │ │ │ │ │ ├── layer-4-lb │ │ │ │ │ ├── _index.md │ │ │ │ │ └── nlb │ │ │ │ │ │ └── _index.md │ │ │ │ │ ├── layer-7-lb │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── alb │ │ │ │ │ │ └── _index.md │ │ │ │ │ └── nginx │ │ │ │ │ │ └── _index.md │ │ │ │ │ ├── proxy │ │ │ │ │ └── _index.md │ │ │ │ │ └── troubleshooting │ │ │ │ │ ├── 404-default-backend │ │ │ │ │ └── _index.md │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── generic-troubleshooting │ │ │ │ │ └── _index.md │ │ │ │ │ └── job-complete-status │ │ │ │ │ └── _index.md │ │ │ ├── rke-add-on │ │ │ │ ├── layer-4-lb │ │ │ │ │ └── _index.md │ │ │ │ └── layer-7-lb │ │ │ │ │ └── _index.md │ │ │ ├── self-signed-ssl │ │ │ │ └── _index.md │ │ │ └── single-node-install-external-lb │ │ │ │ └── _index.md │ │ │ ├── chart-options │ │ │ └── _index.md │ │ │ ├── choosing-version │ │ │ └── _index.md │ │ │ ├── custom-ca-root-certificate │ │ │ └── _index.md │ │ │ ├── encryption │ │ │ ├── _index.md │ │ │ ├── custom-ca-root-certificate │ │ │ │ └── _index.md │ │ │ ├── tls-secrets │ │ │ │ └── _index.md │ │ │ ├── tls-settings │ │ │ │ └── _index.md │ │ │ └── upgrading-cert-manager │ │ │ │ ├── _index.md │ │ │ │ └── helm-2-instructions │ │ │ │ └── _index.md │ │ │ ├── feature-flags │ │ │ ├── _index.md │ │ │ ├── enable-not-default-storage-drivers │ │ │ │ └── _index.md │ │ │ └── istio-virtual-service-ui │ │ │ │ └── _index.md │ │ │ ├── helm-version │ │ │ └── _index.md │ │ │ ├── installing-docker │ │ │ └── _index.md │ │ │ ├── k8s-tutorials │ │ │ ├── _index.md │ │ │ ├── ha-rke │ │ │ │ └── _index.md │ │ │ ├── ha-with-external-db │ │ │ │ └── _index.md │ │ │ ├── how-ha-works │ │ │ │ └── _index.md │ │ │ └── infrastructure-tutorials │ │ │ │ ├── _index.md │ │ │ │ ├── ec2-node │ │ │ │ └── _index.md │ │ │ │ ├── infra-for-ha-with-external-db │ │ │ │ └── _index.md │ │ │ │ ├── infra-for-ha │ │ │ │ └── _index.md │ │ │ │ ├── nginx │ │ │ │ └── _index.md │ │ │ │ ├── nlb │ │ │ │ └── _index.md │ │ │ │ └── rds │ │ │ │ └── _index.md │ │ │ ├── local-system-charts │ │ │ └── _index.md │ │ │ ├── tls-secrets │ │ │ └── _index.md │ │ │ ├── tls-settings │ │ │ └── _index.md │ │ │ ├── troubleshooting │ │ │ └── _index.md │ │ │ ├── update-ca-cert │ │ │ └── _index.md │ │ │ └── upgrading-cert-manager │ │ │ ├── _index.md │ │ │ └── helm-2-instructions │ │ │ └── _index.md │ ├── k8s-in-rancher │ │ ├── _index.md │ │ ├── certificates │ │ │ └── _index.md │ │ ├── configmaps │ │ │ └── _index.md │ │ ├── horitzontal-pod-autoscaler │ │ │ ├── _index.md │ │ │ ├── hpa-background │ │ │ │ └── _index.md │ │ │ ├── hpa-for-rancher-before-2_0_7 │ │ │ │ └── _index.md │ │ │ ├── manage-hpa-with-kubectl │ │ │ │ └── _index.md │ │ │ ├── manage-hpa-with-rancher-ui │ │ │ │ └── _index.md │ │ │ └── testing-hpa │ │ │ │ └── _index.md │ │ ├── load-balancers-and-ingress │ │ │ ├── _index.md │ │ │ ├── ingress │ │ │ │ └── _index.md │ │ │ └── load-balancers │ │ │ │ └── _index.md │ │ ├── pipelines │ │ │ ├── _index.md │ │ │ ├── concepts │ │ │ │ └── _index.md │ │ │ ├── config │ │ │ │ └── _index.md │ │ │ ├── docs-for-v2.0.x │ │ │ │ └── _index.md │ │ │ ├── example-repos │ │ │ │ └── _index.md │ │ │ ├── example │ │ │ │ └── _index.md │ │ │ └── storage │ │ │ │ └── _index.md │ │ ├── registries │ │ │ └── _index.md │ │ ├── secrets │ │ │ └── _index.md │ │ ├── service-discovery │ │ │ └── _index.md │ │ └── workloads │ │ │ ├── _index.md │ │ │ ├── add-a-sidecar │ │ │ └── _index.md │ │ │ ├── deploy-workloads │ │ │ └── _index.md │ │ │ ├── rollback-workloads │ │ │ └── _index.md │ │ │ └── upgrade-workloads │ │ │ └── _index.md │ ├── overview │ │ ├── _index.md │ │ ├── architecture-recommendations │ │ │ └── _index.md │ │ ├── architecture │ │ │ └── _index.md │ │ ├── concepts │ │ │ └── _index.md │ │ ├── glossary │ │ │ └── _index.md │ │ └── rancher-glossary │ │ │ └── _index.md │ ├── pipelines │ │ ├── _index.md │ │ ├── concepts │ │ │ └── _index.md │ │ ├── config │ │ │ └── _index.md │ │ ├── docs-for-v2.0.x │ │ │ └── _index.md │ │ ├── example-repos │ │ │ └── _index.md │ │ ├── example │ │ │ └── _index.md │ │ └── storage │ │ │ └── _index.md │ ├── project-admin │ │ ├── _index.md │ │ ├── namespaces │ │ │ └── _index.md │ │ ├── pipelines │ │ │ └── _index.md │ │ ├── pod-security-policies │ │ │ └── _index.md │ │ ├── project-members │ │ │ └── _index.md │ │ ├── resource-quotas │ │ │ ├── _index.md │ │ │ ├── override-container-default │ │ │ │ └── _index.md │ │ │ ├── override-namespace-default │ │ │ │ └── _index.md │ │ │ ├── quota-type-reference │ │ │ │ └── _index.md │ │ │ └── quotas-for-projects │ │ │ │ └── _index.md │ │ └── tools │ │ │ ├── _index.md │ │ │ ├── project-alerts │ │ │ └── _index.md │ │ │ └── project-logging │ │ │ └── _index.md │ ├── quick-start-guide │ │ ├── _index.md │ │ ├── cli │ │ │ └── _index.md │ │ ├── deployment │ │ │ ├── _index.md │ │ │ ├── amazon-aws-qs │ │ │ │ └── _index.md │ │ │ ├── digital-ocean-qs │ │ │ │ └── _index.md │ │ │ ├── google-gcp-qs │ │ │ │ └── _index.md │ │ │ ├── microsoft-azure-qs │ │ │ │ └── _index.md │ │ │ ├── quickstart-manual-setup │ │ │ │ └── _index.md │ │ │ └── quickstart-vagrant │ │ │ │ └── _index.md │ │ └── workload │ │ │ ├── _index.md │ │ │ ├── quickstart-deploy-workload-ingress │ │ │ └── _index.md │ │ │ └── quickstart-deploy-workload-nodeport │ │ │ └── _index.md │ ├── releases │ │ ├── v2.3.0.md │ │ ├── v2.3.1.md │ │ ├── v2.3.10.md │ │ ├── v2.3.11.md │ │ ├── v2.3.2.md │ │ ├── v2.3.3.md │ │ ├── v2.3.4.md │ │ ├── v2.3.5.md │ │ ├── v2.3.6.md │ │ ├── v2.3.7.md │ │ ├── v2.3.8.md │ │ ├── v2.3.9.md │ │ ├── v2.4.0.md │ │ ├── v2.4.10.md │ │ ├── v2.4.11.md │ │ ├── v2.4.12.md │ │ ├── v2.4.13.md │ │ ├── v2.4.14.md │ │ ├── v2.4.15.md │ │ ├── v2.4.16.md │ │ ├── v2.4.17.md │ │ ├── v2.4.18.md │ │ ├── v2.4.2.md │ │ ├── v2.4.3.md │ │ ├── v2.4.4.md │ │ ├── v2.4.5.md │ │ ├── v2.4.6.md │ │ ├── v2.4.7.md │ │ ├── v2.4.8.md │ │ └── v2.4.9.md │ ├── security │ │ ├── _index.md │ │ ├── cve │ │ │ └── _index.md │ │ ├── rancher-2.1 │ │ │ ├── benchmark-2.1 │ │ │ │ └── _index.md │ │ │ └── hardening-2.1 │ │ │ │ └── _index.md │ │ ├── rancher-2.2 │ │ │ ├── benchmark-2.2 │ │ │ │ └── _index.md │ │ │ └── hardening-2.2 │ │ │ │ └── _index.md │ │ ├── rancher-2.3.x │ │ │ ├── 2.3.0 │ │ │ │ ├── benchmark-2.3 │ │ │ │ │ └── _index.md │ │ │ │ └── hardening-2.3 │ │ │ │ │ └── _index.md │ │ │ ├── 2.3.3 │ │ │ │ ├── benchmark-2.3.3 │ │ │ │ │ └── _index.md │ │ │ │ └── hardening-2.3.3 │ │ │ │ │ └── _index.md │ │ │ └── 2.3.5 │ │ │ │ ├── benchmark-2.3.5 │ │ │ │ └── _index.md │ │ │ │ └── hardening-2.3.5 │ │ │ │ └── _index.md │ │ ├── rancher-2.4 │ │ │ ├── benchmark-2.4 │ │ │ │ └── _index.md │ │ │ └── hardening-2.4 │ │ │ │ └── _index.md │ │ └── security-scan │ │ │ └── _index.md │ ├── system-tools │ │ └── _index.md │ ├── trending-topics │ │ ├── _index.md │ │ ├── certificate-rotation │ │ │ └── _index.md │ │ ├── cleaning-cluster-nodes │ │ │ └── _index.md │ │ ├── cli │ │ │ └── _index.md │ │ ├── deployment │ │ │ └── _index.md │ │ ├── install-rancher-on-k8s │ │ │ └── _index.md │ │ ├── quickstart-manual-setup │ │ │ └── _index.md │ │ ├── requirements │ │ │ └── _index.md │ │ └── single-node-docker │ │ │ └── _index.md │ ├── troubleshooting │ │ ├── _index.md │ │ ├── dns │ │ │ └── _index.md │ │ ├── imported-clusters │ │ │ └── _index.md │ │ ├── kubernetes-components │ │ │ ├── _index.md │ │ │ ├── controlplane │ │ │ │ └── _index.md │ │ │ ├── etcd │ │ │ │ └── _index.md │ │ │ ├── nginx-proxy │ │ │ │ └── _index.md │ │ │ └── worker-and-generic │ │ │ │ └── _index.md │ │ ├── kubernetes-resources │ │ │ └── _index.md │ │ ├── logging │ │ │ └── _index.md │ │ ├── networking │ │ │ └── _index.md │ │ └── rancherha │ │ │ └── _index.md │ ├── user-settings │ │ ├── _index.md │ │ ├── api-keys │ │ │ └── _index.md │ │ ├── cloud-credentials │ │ │ └── _index.md │ │ ├── node-templates │ │ │ └── _index.md │ │ └── preferences │ │ │ └── _index.md │ └── v1.6-migration │ │ ├── _index.md │ │ ├── discover-services │ │ └── _index.md │ │ ├── expose-services │ │ └── _index.md │ │ ├── get-started │ │ └── _index.md │ │ ├── kub-intro │ │ └── _index.md │ │ ├── load-balancing │ │ └── _index.md │ │ ├── monitor-apps │ │ └── _index.md │ │ ├── run-migration-tool │ │ ├── _index.md │ │ └── migration-tools-ref │ │ │ └── _index.md │ │ └── schedule-workloads │ │ └── _index.md ├── rke │ ├── _index.md │ ├── cert-mgmt │ │ └── _index.md │ ├── config-options │ │ ├── _index.md │ │ ├── add-ons │ │ │ ├── _index.md │ │ │ ├── dns │ │ │ │ └── _index.md │ │ │ ├── ingress-controllers │ │ │ │ └── _index.md │ │ │ ├── metrics-server │ │ │ │ └── _index.md │ │ │ ├── network-plugins │ │ │ │ ├── _index.md │ │ │ │ └── custom-network-plugin-example │ │ │ │ │ └── _index.md │ │ │ └── user-defined-add-ons │ │ │ │ └── _index.md │ │ ├── audit-log │ │ │ └── _index.md │ │ ├── authentication │ │ │ └── _index.md │ │ ├── authorization │ │ │ └── _index.md │ │ ├── bastion-host │ │ │ └── _index.md │ │ ├── cloud-providers │ │ │ ├── _index.md │ │ │ ├── aws │ │ │ │ └── _index.md │ │ │ ├── azure │ │ │ │ └── _index.md │ │ │ ├── custom │ │ │ │ └── _index.md │ │ │ ├── openstack │ │ │ │ └── _index.md │ │ │ └── vsphere │ │ │ │ ├── _index.md │ │ │ │ ├── config-reference │ │ │ │ └── _index.md │ │ │ │ ├── enabling-uuid │ │ │ │ └── _index.md │ │ │ │ └── troubleshooting │ │ │ │ └── _index.md │ │ ├── dual-stack │ │ │ └── _index.md │ │ ├── nodes │ │ │ └── _index.md │ │ ├── private-registries │ │ │ └── _index.md │ │ ├── rate-limiting │ │ │ └── _index.md │ │ ├── secrets-encryption │ │ │ └── _index.md │ │ ├── services │ │ │ ├── _index.md │ │ │ ├── external-etcd │ │ │ │ └── _index.md │ │ │ └── services-extras │ │ │ │ └── _index.md │ │ └── system-images │ │ │ └── _index.md │ ├── etcd-snapshots │ │ ├── _index.md │ │ ├── example-scenarios │ │ │ └── _index.md │ │ ├── one-time-snapshots │ │ │ └── _index.md │ │ ├── recurring-snapshots │ │ │ └── _index.md │ │ ├── restoring-from-backup │ │ │ └── _index.md │ │ └── troubleshooting │ │ │ └── _index.md │ ├── example-yamls │ │ └── _index.md │ ├── installation │ │ ├── _index.md │ │ └── certs │ │ │ └── _index.md │ ├── kubeconfig │ │ └── _index.md │ ├── managing-clusters │ │ └── _index.md │ ├── os │ │ └── _index.md │ ├── troubleshooting │ │ ├── _index.md │ │ ├── provisioning-errors │ │ │ └── _index.md │ │ └── ssh-connectivity-errors │ │ │ └── _index.md │ └── upgrades │ │ ├── _index.md │ │ ├── configuring-strategy │ │ └── _index.md │ │ ├── how-upgrades-work │ │ └── _index.md │ │ └── maintaining-availability │ │ └── _index.md └── rke2 │ ├── CNAME │ ├── _index.md │ ├── advanced │ └── _index.md │ ├── architecture │ ├── _index.md │ └── overview.png │ ├── assets │ ├── favicon-32x32.png │ ├── fips_engagement.pdf │ ├── logo-horizontal-rke.svg │ ├── logo-stacked-black-rke2.svg │ └── logo-stacked-white-rke2.svg │ ├── backup_restore │ └── _index.md │ ├── baseCommitid │ └── _index.md │ ├── cluster_access │ └── _index.md │ ├── helm │ └── _index.md │ ├── install │ ├── airgap │ │ └── _index.md │ ├── containerd_registry_configuration │ │ └── _index.md │ ├── ha │ │ └── _index.md │ ├── install_options │ │ ├── install_options │ │ │ └── _index.md │ │ ├── linux_agent_config │ │ │ └── _index.md │ │ ├── server_config │ │ │ └── _index.md │ │ └── windows_agent_config │ │ │ └── _index.md │ ├── linux_uninstall │ │ └── _index.md │ ├── methods │ │ └── _index.md │ ├── network_options │ │ └── _index.md │ ├── quickstart │ │ └── _index.md │ ├── requirements │ │ └── _index.md │ ├── windows_airgap │ │ └── _index.md │ └── windows_uninstall │ │ └── _index.md │ ├── known_issues │ └── _index.md │ ├── networking │ └── _index.md │ ├── security │ ├── about_hardened_images │ │ └── _index.md │ ├── cis_self_assessment16 │ │ └── _index.md │ ├── fips_support │ │ └── _index.md │ ├── hardening_guide │ │ └── _index.md │ ├── policies │ │ └── _index.md │ ├── secrets_encryption │ │ └── _index.md │ └── selinux │ │ └── _index.md │ ├── subcommands │ └── _index.md │ └── upgrade │ ├── automated_upgrade │ └── _index.md │ ├── basic_upgrade │ └── _index.md │ └── upgrade │ └── _index.md ├── docusaurus.config.js ├── metadata.js ├── package-lock.json ├── package.json ├── pdf-generate.js ├── sidebars.js ├── src ├── css │ └── custom.css ├── pages │ ├── index.js │ ├── k3s.js │ ├── octopus.js │ ├── rancher1.js │ ├── rancher2.5.js │ ├── rancher2.js │ ├── rke.js │ ├── rke2.js │ └── styles.module.css └── theme │ ├── PortsCustomNodes │ ├── index.js │ └── styles.module.css │ ├── PortsHosted │ ├── index.js │ └── styles.module.css │ ├── PortsIaasNodes │ ├── index.js │ └── styles.module.css │ └── PortsImported │ ├── index.js │ └── styles.module.css ├── static └── img │ ├── contributing │ ├── ewm.jpg │ ├── organization.jpg │ └── organization.png │ ├── favicon.ico │ ├── harvester │ ├── access-to-vm.png │ ├── architecture.png │ ├── authentication.png │ ├── create-network.png │ ├── create-vm.png │ ├── do.png │ ├── enable-vlan.png │ ├── first-log-in.png │ ├── harvester-app.png │ ├── harvester-catalog.png │ ├── harvester-ui.png │ ├── iso-install.png │ ├── iso-installed.png │ ├── iso-mode-upgrade.png │ ├── iso-nic-config.png │ ├── node-network-configuration.png │ ├── upgrade-ui.png │ ├── upload-image.png │ ├── vlan-case.png │ └── vm-network-configuration.png │ ├── k3s │ ├── access-kube-explorer.png │ ├── autok3s-demo-min.gif │ ├── autok3s-v0.4.7-demo.gif │ ├── cluster-detail.jpg │ ├── cluster-templates.png │ ├── create-k3d-cluster.png │ ├── custom-create-cluster-additional-alibaba.png │ ├── custom-create-cluster-additional-google.png │ ├── custom-create-cluster-additional-harvester.png │ ├── custom-create-cluster-additional-native.png │ ├── custom-create-cluster-additional-tencent.png │ ├── custom-create-cluster-additional.png │ ├── custom-create-cluster-credential-alibaba.png │ ├── custom-create-cluster-credential-google.png │ ├── custom-create-cluster-credential-tencent.png │ ├── custom-create-cluster-credential.png │ ├── custom-create-cluster-instance-google.png │ ├── custom-create-cluster-instance-harvester.png │ ├── custom-create-cluster-instance-native.png │ ├── custom-create-cluster-instance-tencent.png │ ├── custom-create-cluster-instance.png │ ├── custom-create-cluster-k3s-native.png │ ├── custom-create-cluster-k3s.png │ ├── custom-create-cluster-option-alibaba.png │ ├── disable-kube-explorer.png │ ├── download-kubeconfig.png │ ├── enable-kube-explorer.png │ ├── fill-form-with-templates.png │ ├── join-nodes-native.png │ ├── join-nodes.png │ ├── k3s-architecture-ha-server.png │ ├── k3s-architecture-single-server.png │ ├── k3s-production-setup.svg │ ├── kube-explorer-demo.gif │ ├── kubectl.jpg │ ├── launch-kube-explorer-native.png │ ├── launch-kube-explorer.png │ ├── launch-kubectl.png │ ├── node-ssh.jpg │ ├── quick-start-alibaba.png │ ├── quick-start-google.png │ ├── quick-start-harvester.png │ ├── quick-start-k3d.png │ ├── quick-start-native.png │ ├── quick-start-tencent.png │ ├── quick-start-with-default-templates.png │ ├── quick-start.png │ ├── set-default-templates.png │ ├── ssh-k3d.png │ ├── ssh-node-native.png │ ├── ssh-node.png │ ├── upgrade-cluster-result.png │ ├── upgrade-cluster-to-specified-version.png │ └── upgrade-cluster.png │ ├── octopus │ ├── architecture.png │ ├── edge-ui.jpg │ ├── favicon.ico │ ├── landing-img-adaptors.png │ ├── landing-img-arch.png │ ├── landing-img-edge.png │ ├── logo.png │ ├── monitoring.png │ ├── rancher-home.svg │ └── rancher-logo-horiz-white.svg │ ├── rancher-logo-cow-white.svg │ ├── rancher-logo-stacked-black.svg │ ├── rancher-logo-stacked-color.svg │ ├── rancher │ ├── F5-7-layer-loadbalancer │ │ ├── SSL-1.jpg │ │ ├── SSL-2.jpg │ │ ├── SSL-3.jpg │ │ ├── Virtual-Server-1.jpg │ │ ├── Virtual-Server-2.jpg │ │ ├── Virtual-Server-3.jpg │ │ ├── Virtual-Server-4.jpg │ │ ├── Virtual-Server-5.jpg │ │ ├── add-node-1.jpg │ │ ├── add-node-2.jpg │ │ ├── add-pool-1.jpg │ │ ├── add-pool-2.jpg │ │ ├── architecture.png │ │ ├── cert-1.jpg │ │ ├── cert-2.jpg │ │ ├── cert-3.jpg │ │ ├── cert-4.jpg │ │ ├── health-check-config.jpg │ │ ├── irule-1.jpg │ │ └── irule-2.jpg │ ├── F5-WAF │ │ ├── F5-conditions.jpg │ │ ├── SSL-module-topology.jpg │ │ ├── SSLO-configuration-1.jpg │ │ ├── SSLO-configuration-2.jpg │ │ ├── SSLO-configuration-3.jpg │ │ ├── SSLO-module.jpg │ │ ├── assert-cookie.jpg │ │ ├── create-waf-strategy.jpg │ │ ├── external.jpg │ │ ├── learn-traffic.jpg │ │ ├── redirect-traffic.jpg │ │ ├── security-strategy-1.jpg │ │ ├── security-strategy-2.jpg │ │ ├── service-chain.jpg │ │ ├── start-asm-module.jpg │ │ ├── submit-deployment.jpg │ │ ├── validate-access.png │ │ ├── virtual-server-binding-1.png │ │ ├── virtual-server-binding.jpg │ │ ├── virtual-server.jpg │ │ └── waf-strategy-template.jpg │ ├── Google-Credentials-tab.png │ ├── Google-Enable-APIs-Screen.png │ ├── Google-Enable-Admin-APIs.png │ ├── Google-OAuth-consent-screen-tab.png │ ├── Google-Select-UniqueID-column.png │ ├── Google-svc-acc-step1.png │ ├── Google-svc-acc-step2.png │ ├── Google-svc-acc-step3-key-creation.png │ ├── add-custom-metrics.gif │ ├── add-env-var.png │ ├── add-ingress-form.png │ ├── add-ingress.gif │ ├── add-node-label.gif │ ├── add-persistent-volume.png │ ├── add-pod-label.gif │ ├── add-record.png │ ├── adfs │ │ ├── adfs-add-rpt-1.png │ │ ├── adfs-add-rpt-10.png │ │ ├── adfs-add-rpt-11.png │ │ ├── adfs-add-rpt-2.png │ │ ├── adfs-add-rpt-3.png │ │ ├── adfs-add-rpt-4.png │ │ ├── adfs-add-rpt-5.png │ │ ├── adfs-add-rpt-6.png │ │ ├── adfs-add-rpt-7.png │ │ ├── adfs-add-rpt-8.png │ │ ├── adfs-add-rpt-9.png │ │ ├── adfs-add-tcr-1.png │ │ ├── adfs-add-tcr-2.png │ │ ├── adfs-edit-cr.png │ │ └── adfs-overview.png │ ├── airgap │ │ ├── edit-system-default-registry.png │ │ ├── enter-system-default-registry.png │ │ ├── privateregistry.svg │ │ ├── privateregistrypushpull.svg │ │ ├── settings.png │ │ ├── system-charts-setting.png │ │ └── system-charts-update.png │ ├── alert_2.4_to_2.5_source.png │ ├── alert_2.4_to_2.5_target.png │ ├── alertmanager-ui.png │ ├── app-readme.png │ ├── audit_logs_gui │ │ ├── context_local_system.png │ │ ├── rancher_audit_log_container.png │ │ ├── rancher_workload.png │ │ └── view_logs.png │ ├── auth-providers.svg │ ├── backup-container.png │ ├── backup_restore │ │ ├── backup │ │ │ ├── backup.png │ │ │ ├── encryption.png │ │ │ ├── schedule.png │ │ │ └── storageLocation.png │ │ └── restore │ │ │ ├── default.png │ │ │ ├── encryption.png │ │ │ ├── existing.png │ │ │ ├── restore.png │ │ │ └── s3store.png │ ├── banzai-cloud-logging-operator.png │ ├── bpg │ │ ├── hub-and-spoke.png │ │ └── regional.png │ ├── bulk-key-values.gif │ ├── calico-diagram.svg │ ├── calico-logo.png │ ├── canal-diagram.png │ ├── canal-logo.png │ ├── cattle-load-balancer.svg │ ├── choose-release-version.png │ ├── click-endpoints.png │ ├── click-register-new-app.png │ ├── cloud-provider.png │ ├── cluster-compute-resources-dashboard.png │ ├── cluster-options-yaml.png │ ├── cluster-options.png │ ├── clusterdiagram.svg │ ├── cni-logo.png │ ├── container-port-field.png │ ├── create-backup-tarball.png │ ├── dashboard.png │ ├── deploy-service.gif │ ├── deploy-workload-hostport.png │ ├── deploy-workload-load-balancer.png │ ├── deploy-workload-nodeport.png │ ├── dir-backup-tarball-clear.png │ ├── dir-backup-tarball.png │ ├── docker-container-ps-output.png │ ├── downloadsshkeys.png │ ├── edit-cluster.png │ ├── edit-migration-workload.gif │ ├── enable-cluster-monitoring.gif │ ├── enable-project-monitoring.gif │ ├── encapsulated-network.png │ ├── enter-azure-reply-url.png │ ├── expansion │ │ ├── 007S8ZIlly1gejvtmh6w3j31sx0u0q3j.jpg │ │ ├── 007S8ZIlly1gejx15bo0yj313f0u00y5.jpg │ │ ├── 007S8ZIlly1gek021xwzij31tq0k8gm1.jpg │ │ └── 007S8ZIlly1get57kqscwj31nk0jo0t6.jpg │ ├── flannel-diagram.png │ ├── flannel-logo.png │ ├── fleet-architecture.png │ ├── fleet-architecture.svg │ ├── global-menu.png │ ├── globalpermissionfinal.png │ ├── globalpermissionrole.png │ ├── globalpermissionuser.png │ ├── grafana-default-dashboard.png │ ├── ha │ │ ├── nlb │ │ │ ├── add-targets-targetgroup-443.png │ │ │ ├── added-targets-targetgroup-443.png │ │ │ ├── create-targetgroup-443-advanced.png │ │ │ ├── create-targetgroup-443.png │ │ │ ├── create-targetgroup-80-advanced.png │ │ │ ├── create-targetgroup-80.png │ │ │ ├── ec2-loadbalancing.png │ │ │ └── edit-targetgroup-443.png │ │ ├── rancher2ha-l7.svg │ │ └── rancher2ha.svg │ ├── health-check-section.png │ ├── healthcheck-cmd-exec.png │ ├── healthcheck.svg │ ├── horizontal-pod-autoscaler.jpg │ ├── horizontal-pod-autoscaler.svg │ ├── hostPort.svg │ ├── iaas-scale-nodes.png │ ├── import-yaml-error.png │ ├── imported-workloads.png │ ├── istio-ingress.svg │ ├── k3s-architecture-ha-server.png │ ├── k3s-architecture-single-server.png │ ├── k3s-ha-architecture.svg │ ├── k3s-server-storage.svg │ ├── k3s-single-node-server-architecture.svg │ ├── keycloak-saml-client-builtin-mappers.png │ ├── keycloak-saml-client-configuration.png │ ├── keycloak-saml-client-group-mapper.png │ ├── kubernetes-load-balancer.svg │ ├── kubernetes-resource-quota.svg │ ├── layer-4-lb-config-map.png │ ├── ldapsearch-group.png │ ├── ldapsearch-user.png │ ├── linked-service-workload.png │ ├── listening-port-field.png │ ├── liveness-check.png │ ├── load-balancer-links.png │ ├── load-balancer-ssl-certs.png │ ├── longhorn-architecture.svg │ ├── longhorn-screenshot.png │ ├── migrate-schedule-workloads.png │ ├── monitoring-v2-architecture-overview.svg │ ├── monitoring │ │ └── migration │ │ │ ├── alert_2.4_to_2.5_source.png │ │ │ └── alert_2.4_to_2.5_target.png │ ├── move-namespaces.png │ ├── new-app-registration-1.png │ ├── new-app-registration-2.png │ ├── new-app-registration.png │ ├── nginx-config.png │ ├── no-ingress.png │ ├── node-drain.png │ ├── node-edit.png │ ├── node-schedule-advanced-options.png │ ├── node-schedule-antiaffinity.png │ ├── node-scheduling-affinity.png │ ├── node-scheduling-labels.png │ ├── node-scheduling.png │ ├── nodePort.svg │ ├── nodeport-dropdown.png │ ├── old-doc │ │ ├── image-20180805213034249.png │ │ ├── image-20180805213123781.png │ │ ├── image-20180910172158993.png │ │ ├── image-20181101183954443.png │ │ ├── image-20190309173154246.png │ │ ├── image-20190314173250612.png │ │ ├── image-20190314173915552.png │ │ ├── image-20190314174424562.png │ │ ├── image-20190314174524973.png │ │ ├── image-20190314174834334.png │ │ ├── image-20190314175308608.png │ │ ├── image-20190314181124857.png │ │ ├── image-20190314182034766.png │ │ ├── image-20190314182530479.png │ │ ├── image-20190314205425237.png │ │ ├── image-20190314212013510.png │ │ ├── image-20190314212124745.png │ │ ├── image-20190314212701691.png │ │ ├── image-20190314213051682.png │ │ ├── image-20190314213123621.png │ │ ├── image-20190314213215303.png │ │ ├── image-20190315232842668.png │ │ ├── image-20190315233201822.png │ │ ├── image-20190315233320815.png │ │ ├── image-20190328180337080.png │ │ ├── image-20190328180442226.png │ │ ├── image-20190328180455485.png │ │ ├── image-20190423133555060.png │ │ ├── image-20190423133810076.png │ │ ├── image-20190423135522178.png │ │ ├── image-20190423135604503.png │ │ ├── image-20190514184126478.png │ │ ├── image-20190514185026706.png │ │ ├── image-20190514185322798.png │ │ ├── image-20190615165436722.png │ │ ├── image-20190615170819489.png │ │ ├── image-20190923184019854.png │ │ ├── image-20190923184601819.png │ │ ├── image-20191213210405727.png │ │ ├── image-20191213212549253.png │ │ ├── image-20191214193550681.png │ │ ├── image-20191214193741315.png │ │ ├── image-20191214194320570.png │ │ ├── image-20200220190647637.png │ │ ├── image-20200220190801613.png │ │ ├── image-20200220190821898.png │ │ └── image-20200220205103937.png │ ├── one-six-schedule.png │ ├── open-rancher-app2.png │ ├── output-dot-text.png │ ├── permissions.png │ ├── persistent-volume.png │ ├── placeholder-ref-2.png │ ├── placeholder-ref.png │ ├── platform.png │ ├── port-communications.svg │ ├── principal-ID.png │ ├── probes.svg │ ├── prometheus-graph-ui.png │ ├── prometheus-rules-ui.png │ ├── prometheus-targets-ui.png │ ├── pushprox-process.svg │ ├── questions.png │ ├── rancher-architecture-cluster-controller.svg │ ├── rancher-architecture-node-roles.svg │ ├── rancher-architecture-rancher-api-server.svg │ ├── rancher-architecture-rancher-components.svg │ ├── rancher-architecture-separation-of-rancher-server.svg │ ├── rancher-architecture.svg │ ├── rancher-on-prem-vsphere.svg │ ├── rancher-resource-quota-override.svg │ ├── rancher-resource-quota.svg │ ├── rancher-storage.svg │ ├── rancher-version.png │ ├── rancher_overview.png │ ├── rancher_overview_2.png │ ├── ranchercomponentsdiagram.svg │ ├── rancherroles1.png │ ├── rancherroles2.png │ ├── rancheruser.png │ ├── readiness-check-http.png │ ├── readiness-check-tcp.png │ ├── readiness-check.png │ ├── resolve-affinity.png │ ├── resolve-global.png │ ├── resolve-health-checks.png │ ├── resolve-links.png │ ├── resolve-load-balancer.png │ ├── resolve-ports.png │ ├── resolve-pull-image.png │ ├── resolve-scale.png │ ├── resource-constraint-settings.png │ ├── rke-etcd-backup.png │ ├── rke-server-storage.svg │ ├── schedule-specific-node.png │ ├── scheduled-nodes.png │ ├── search-app-registrations2.png │ ├── search-azure-ad.png │ ├── search-enterprise-applications.png │ ├── select-client-secret.png │ ├── select-required-permissions-1.png │ ├── select-required-permissions-2.png │ ├── select-required-permissions.png │ ├── separate-check.png │ ├── set-hostport.gif │ ├── set-nodeport.gif │ ├── set-up-scraping.svg │ ├── shibboleth-with-openldap-groups.svg │ ├── sign-in-external.png │ ├── sign-in.png │ ├── sign-out-local.png │ ├── single-to-ha.assets │ │ ├── image-20191016142653127.png │ │ ├── image-20191016142719866.png │ │ ├── image-20191016142808830.png │ │ ├── image-20191016142850886.png │ │ ├── image-20191016143133778.png │ │ ├── image-20191016143513361.png │ │ ├── image-20191016143636998.png │ │ ├── image-20191016143950402.png │ │ ├── image-20191016144352807.png │ │ ├── image-20191016144702116.png │ │ ├── image-20191016145903388.png │ │ ├── image-20191016150137910.png │ │ ├── image-20191016150556120.png │ │ ├── image-20191016152133693.png │ │ ├── image-20191016165114635.png │ │ ├── image-20191016165143557.png │ │ ├── image-20191016170347456.png │ │ ├── image-20191016170849825.png │ │ ├── image-20191016185613510.png │ │ ├── image-20191016191846530.png │ │ ├── image-20191016195215819.png │ │ ├── image-20191016195309268.png │ │ └── image-20191017182734715.png │ ├── solution_overview.drawio.svg │ ├── splunk │ │ ├── splunk1.jpg │ │ ├── splunk2.jpg │ │ ├── splunk3.jpg │ │ ├── splunk4.jpg │ │ └── splunk5.jpg │ ├── stop-rancher-container.gif │ ├── storage-classes.png │ ├── unencapsulated-network.png │ ├── update-scrape-config.svg │ ├── user-settings.png │ ├── users-page.png │ ├── view-edit-yaml.png │ ├── vsphere-cluster-create-1.png │ ├── vsphere-node-driver-cloudprovider.png │ ├── vsphere-node-template-1.png │ ├── vsphere-node-template-2.png │ ├── vsphere-storage-class.png │ ├── weave-logo.png │ ├── workload-add-volume.png │ ├── workload-persistent-data.png │ ├── workload-scale.png │ ├── workload-type-option.png │ └── workload-type.png │ ├── rancher1 │ ├── faqs │ │ ├── custom_lb.png │ │ ├── jd.jpg │ │ └── proxy.png │ └── server.assets │ │ ├── image-201803291746238.png │ │ ├── image-201803291747058.png │ │ ├── image-201803291747230.png │ │ ├── image-201803291748154.png │ │ ├── image-201803291751248.png │ │ └── image-201803291751511.png │ ├── rancherdesktop │ ├── examples │ │ ├── rancherUiMainPage.png │ │ └── rancherUiWelcomePage.png │ ├── favicon.ico │ ├── how-it-works-rancher-desktop.svg │ ├── intro │ │ └── intro.png │ ├── kubernetes-cluster-progress.png │ ├── kubernetes-settings-main-page.png │ ├── logo.svg │ ├── reset-kubernetes.png │ ├── tutorial │ │ ├── docsVersionDropdown.png │ │ └── localeDropdown.png │ ├── vscodedocker │ │ ├── rd-main.png │ │ ├── vscode-docker-add-docker-files-1.png │ │ ├── vscode-docker-debug-breakpoint-hit.png │ │ ├── vscode-docker-debug-breakpoint.png │ │ ├── vscode-docker-debug-configuration.png │ │ ├── vscode-docker-marketplace.png │ │ └── vscode-main.png │ └── vscoderemotecontainers │ │ ├── rd-main.png │ │ ├── vscode-main.png │ │ ├── vscode-remotedevelopment-appinbrowser.png │ │ ├── vscode-remotedevelopment-commandbutton.png │ │ ├── vscode-remotedevelopment-commandpalette.png │ │ ├── vscode-remotedevelopment-containerprogress.png │ │ ├── vscode-remotedevelopment-containersuccess.png │ │ ├── vscode-remotedevelopment-installed.png │ │ ├── vscode-remotedevelopment-marketplace.png │ │ ├── vscode-remotedevelopment-openfolder.png │ │ └── vscode-remotedevelopment-trysample.png │ └── rke │ ├── rke-etcd-backup.png │ ├── vsphere-advanced-parameters.png │ └── vsphere-nodedriver-enable-uuid.png └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | [*.{js,ts,json}] 2 | indent_size = 4 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/----.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: 问题描述 3 | about: 请使用这个模板描述问题 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **问题描述** 11 | 请使用一到两句话概述这个问题 12 | 13 | **问题类型** 14 | 请选择一个最符合的选项: 15 | 16 | 1. 缺少对应描述 17 | 2. 描述不准确 18 | 3. 错别字/用词错误 19 | 4. 链接跳转失败,单击该链接返回404 20 | 5. 图片挂了 21 | 6. 文档架构不合理,有些文档层级太深了,不好找 22 | 7. 使用页面右上方的搜索框没找到想找的东西 23 | 8. 其他问题(请详细说明) 24 | 25 | **现网文档URL** 26 | 27 | 请输入文档页面的URL,利于快速发现和解决问题。 28 | 29 | **文档网页截图截图** 30 | 请提供截图,利于快速定位和解决问题 31 | 32 | **修改建议** 33 | 请说明您对这个问题的修改意见或建议,从用户的角度出发,您觉得应该怎么改。 34 | 35 | **其他备注或说明(可选)** 36 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | .DS_Store 4 | .docusaurus 5 | build_docs -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.defaultFormatter": "esbenp.prettier-vscode", 3 | "files.exclude": { 4 | "node_modules": true, 5 | ".docusaurus": true 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine:3.8 2 | COPY . /build 3 | WORKDIR /build -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Rancher 中文文档 2 | 3 | Rancher 中文文档,包括Rancher1.x、Rancher 2.x、RKE、K3s、Octopus、Harvester和 RKE2的中文文档,其中Rancher1.x的文档已经不再维护;Rancher 2.x、RKE、K3s、Octopus、Harvester和 RKE2的中文文档会定期刷新。 4 | 5 | 本网站使用了 [Docusaurus 2](https://v2.docusaurus.io/) 文档框架。 6 | 7 | ## 如何开发? 8 | 9 | ### 准备 10 | 11 | 确保您的开发环境有如下软件: 12 | 13 | * [Git](http://git-scm.com/) 14 | * [Node.js](http://nodejs.org/) 10.9.0+ (with NPM) 15 | * [Yarn](https://yarnpkg.com/en/docs/install) 1.5+ 16 | 17 | ### 安装 18 | 19 | 如果yarn install的速度很慢,可以尝试配置淘宝Registry。 20 | 21 | ```bash 22 | $ yarn config set registry https://registry.npmmirror.com -g 23 | ``` 24 | 25 | 安装初始化 26 | 27 | ```bash 28 | $ git clone 'https://github.com/cnrancher/docs-rancher2' 29 | $ cd 'docs-rancher2' 30 | $ yarn install 31 | ``` 32 | 33 | ### 本地启动 34 | 35 | ```bash 36 | $ yarn start 37 | ``` 38 | 39 | 将在浏览器中自动打开http://localhost:3000/ 40 | 41 | ### 构建 42 | 43 | ```bash 44 | $ yarn build 45 | ``` 46 | 47 | -------------------------------------------------------------------------------- /docs/k3s/installation/uninstall/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 卸载 K3s 3 | description: 如果您使用安装脚本安装了 K3s,那么在安装过程中会生成一个卸载 K3s 的脚本。卸载 K3s 会删除集群数据和所有脚本。要使用不同的安装选项重新启动集群,请使用不同的标志重新运行安装脚本。 4 | keywords: 5 | - k3s中文文档 6 | - k3s 中文文档 7 | - k3s中文 8 | - k3s 中文 9 | - k3s 10 | - k3s教程 11 | - k3s中国 12 | - rancher 13 | - k3s 中文教程 14 | - 卸载 K3s 15 | --- 16 | 17 | 如果您使用安装脚本安装了 K3s,那么在安装过程中会生成一个卸载 K3s 的脚本。 18 | 19 | > 卸载 K3s 会删除集群数据和所有脚本。要使用不同的安装选项重新启动集群,请使用不同的标志重新运行安装脚本。 20 | 21 | 要从 server 节点卸载 K3s,请运行: 22 | 23 | ``` 24 | /usr/local/bin/k3s-uninstall.sh 25 | ``` 26 | 27 | 要从 agent 节点卸载 K3s,请运行: 28 | 29 | ``` 30 | /usr/local/bin/k3s-agent-uninstall.sh 31 | ``` 32 | -------------------------------------------------------------------------------- /docs/k3s/known-issues/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 已知问题 3 | description: 已知问题会定期更新,旨在告知您有关在下一发行版本中可能不会立即解决的问题。 4 | keywords: 5 | - k3s中文文档 6 | - k3s 中文文档 7 | - k3s中文 8 | - k3s 中文 9 | - k3s 10 | - k3s教程 11 | - k3s中国 12 | - rancher 13 | - k3s 中文教程 14 | - 已知问题 15 | --- 16 | 17 | 已知问题会定期更新,旨在告知您有关在下一发行版本中可能不会立即解决的问题。 18 | 19 | **Snap Docker** 20 | 21 | 如果你打算将 K3s 与 docker 一起使用,不建议通过 snap 软件包安装 Docker,因为已知它将导致运行 K3s 的问题。 22 | 23 | **Iptables** 24 | 25 | 如果你在 nftables 模式下运行 iptables,而不是传统模式,你可能会遇到问题。我们建议使用较新的 iptables(如 1.6.1+)来避免出现问题。 26 | 27 | **Rootless 模式** 28 | 29 | 用 Rootless 模式运行 K3s 是实验性的,有几个[已知的问题](/docs/k3s/advanced/_index#rootless-模式的已知问题)。 30 | -------------------------------------------------------------------------------- /docs/k3s/security/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Security" 3 | weight: 90 4 | --- 5 | 6 | 本节介绍了保护K3s集群的方法和手段。它分为两个部分。这些指南假定K3s是以嵌入式etcd运行的。 7 | 8 | 以下文档适用于 CIS Kubernetes Benchmark v1.6。 9 | 10 | - [Hardening Guide](/docs/k3s/security/hardening-guide/_index) 11 | - [CIS Benchmark Self-Assessment Guide](/docs/k3s/security/self-assessment/_index) 12 | -------------------------------------------------------------------------------- /docs/k3s/upgrades/killall/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: k3s-killall.sh 脚本 3 | description: 本节介绍如何基础升级 K3s 集群。你可以通过使用安装脚本升级K3s,或者手动安装所需版本的二进制文件。 4 | keywords: 5 | - k3s中文文档 6 | - k3s 中文文档 7 | - k3s中文 8 | - k3s 中文 9 | - k3s 10 | - k3s教程 11 | - k3s中国 12 | - rancher 13 | - k3s 中文教程 14 | - 基础升级 15 | --- 16 | 17 | 为了在升级期间实现高可用性,当 K3s 服务停止时,K3s 容器会继续运行。 18 | 19 | 要停止所有的 K3s 容器并重置容器的状态,可以使用`k3s-killall.sh`脚本。 20 | 21 | killall 脚本清理容器、K3s 目录和网络组件,同时也删除了 iptables 链和所有相关规则。集群数据不会被删除。 22 | 23 | 要从 server 节点运行 killall 脚本,请运行: 24 | 25 | ``` 26 | /usr/local/bin/k3s-killall.sh 27 | ``` 28 | -------------------------------------------------------------------------------- /docs/octopus/about/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 关于 Octopus 3 | description: Octopus 是基于Kubernetes或k3s的开源和云原生的设备管理系统,它非常轻巧,也不需要替换 Kubernetes 集群的任何基础组件。 部署了 Octopus,集群可以将边缘设备作为自定义 k8s 资源进行管理。 4 | keywords: 5 | - Octopus中文文档 6 | - Octopus 中文文档 7 | - 边缘计算 8 | - IOT 9 | - edge computing 10 | - Octopus中文 11 | - Octopus 中文 12 | - Octopus 13 | - Octopus教程 14 | - Octopus中国 15 | - rancher 16 | - Octopus 中文教程 17 | - 关于 Octopus 18 | --- 19 | 20 | ## Octopus 简介 21 | 22 | Octopus 是基于 Kubernetes 或[k3s](/docs/k3s/_index)的开源和云原生的设备管理系统,它非常轻巧,也不需要替换 Kubernetes 集群的任何基础组件。 部署了 Octopus,集群可以将边缘设备作为自定义 k8s 资源进行管理。 23 | 24 | ## 核心概念 25 | 26 | 如同八爪鱼一样,Octopus 由大脑(Brain)和触角(Limbs)组成。 大脑只需部署一个领导者,或在 HA 模式下自动选择一个领导者,它只要负责处理相对集中的信息,例如验证节点是否存在以及设备模型(类型)是否存在。 27 | 而 Limbs 则需要部署在可以连接设备的各个边缘节点上,它们通过协议适配器(Adaptors)与实际设备通信。 因此,Octopus 是通过一种 DeviceLink 的 YAML 文件(k8s 资源对象)配置和管理设备。 28 | 29 | ## 基于 k3s 集群的架构图 30 | 31 | ![Architecture](/img/octopus/architecture.png) 32 | -------------------------------------------------------------------------------- /docs/octopus/adaptors/agent-device/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: AgentDevice Adaptor 3 | --- 4 | 5 | :::note 6 | coming soon! 7 | ::: 8 | -------------------------------------------------------------------------------- /docs/rancher1/configurations/environments/audit-log/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 日志审计 3 | --- 4 | 5 | 只有[管理员](/docs/rancher1/configurations/environments/access-control/_index#管理员)用户有权限访问审计日志。审计日志在**系统管理**->**审计日志**。 6 | 7 | Rancher 的审计日志是不同事件类型的集合。 8 | 9 | - 任何带有前缀`api`的事件是 API 的一次调用。事件类型将记录 API 操作,谁执行的操作以及 API 调用的方式(即通过 UI,通过 API 密钥)。 10 | - 任何没有带`api`前缀的事件都是 Rancher Server 做的事情。例如,在协调服务的容器期间,在实例创建时会产生一个`instance.create`事件。 11 | -------------------------------------------------------------------------------- /docs/rancher1/configurations/environments/certificates/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 证书 3 | --- 4 | 5 | # 添加证书 6 | 7 | 可以在**基础架构** -> **证书**页面把证书添加到您的[环境](/docs/rancher1/configurations/environments/_index)里。这个页面已经列出了所有已添加到 Rancher 环境的证书。您可以单击**添加证书**添加一个新证书。 8 | 9 | 1. 填写证书**名称**和**描述**。 10 | 11 | 2. 填写证书**私钥**。您可以单击**从文件读取**导入文件或粘贴私钥到文本框。 12 | 13 | 3. 填写**证书**。您可以单击**从文件读取** 导入文件或粘贴证书到文本框。 14 | 15 | 4. (可选) 如果您有其它的**证书链**,您也可以通过**从文件读取**导入文件或粘贴证书链到文本框。 16 | 17 | ## 使用证书 18 | 19 | 添加到环境的证书可用作[负载均衡的 SSL 终端](/docs/rancher1/infrastructure/cattle/adding-load-balancers/_index)或 Kubernetes 入口的 TSL 终端。 20 | -------------------------------------------------------------------------------- /docs/rancher1/configurations/environments/machine-drivers/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 主机驱动 3 | --- 4 | 5 | [Docker-machine](https://docs.docker.com/machine/)驱动可被添加到 Rancher 中,以便这些驱动可以将主机添加到 Rancher 中。只有[管理员](/docs/rancher1/configurations/environments/access-control/_index#管理员)可以设置哪些主机驱动可见,这个在**系统管理** -> **主机驱动**。 6 | 7 | 只有**启用**的主机驱动才能在**基础架构** -> **添加主机**的页面上显示出来。默认情况下,Rancher 提供了许多主机驱动,但是只有一些是**启用**状态。 8 | 9 | ### 添加主机驱动 10 | 11 | 您可以通过单击**添加主机驱动**轻松添加自己的主机驱动。 12 | 13 | 1. 提供**下载 URL**。这个地址是 64 位 Linux 驱动的二进制文件的地址。 14 | 2. (可选) 为驱动提供自定义添加主机界面的**自定义 UI 的 URL**。参考[ui-driver-skel repository](https://github.com/rancher/ui-driver-skel)以了解更多信息。 15 | 3. (可选) 提供一个**校验和**以检验下载的驱动是否匹配期望的校验和。 16 | 4. 完成之后,单击**创建**。 17 | 18 | 单击创建后,Rancher 就会添加这个额外的驱动,并将其显示在[添加主机](/docs/rancher1/infrastructure/hosts/other/_index)页面的**驱动**选项里。 19 | -------------------------------------------------------------------------------- /docs/rancher1/rancher-service/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 概述 3 | --- 4 | 5 | 当启动 Rancher 时,每个[环境](/docs/rancher1/configurations/environments/_index)的创建都基于[环境模版](/docs/rancher1/configurations/environments/_index#什么是环境模版)。在启动一个环境时,您可以在环境模版中选择需要启动的基础设施服务。这些基础设施服务包括编排引擎,[外部 DNS](/docs/rancher1/infrastructure/cattle/external-dns-service/_index),[网络](/docs/rancher1/rancher-service/networking/_index),[存储](/docs/rancher1/rancher-service/storage-services/_index),框架服务 (例如: [内部 DNS](/docs/rancher1/rancher-service/dns-service/_index),[Metadata 服务](/docs/rancher1/rancher-service/metadata-service/_index),和[健康检查服务](/docs/rancher1/infrastructure/cattle/health-checks/_index))。 6 | 7 | 基础设施服务位于[Rancher 应用商店](https://github.com/rancher/rancher-catalog)和[社区应用商店](https://github.com/rancher/community-catalog)中的`infra-templates`文件夹中。Rancher 应用商店和社区应用商店是默认开启的,它们提供了一系列可以在环境模版中使用的基础服务。 8 | 9 | 当创建一个环境模版时,默认开启运行一个环境所需的一系列基础服务。 10 | -------------------------------------------------------------------------------- /docs/rancher1/rancher-service/dns-service/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: DNS服务 3 | --- 4 | 5 | Rancher 提供了一个分布式 DNS 服务的基础设施服务。这个服务是通过 Rancher 自己的轻量级 DNS 服务器和高可用性的 control-plane 实现的。每个健康容器在链接到另一个服务或添加一个服务别名时将自动被添加到 DNS 服务。当使用服务名称查询时,DNS 服务返回该服务的健康容器的 IP 地址的随机列表。 6 | 7 | - 默认情况下,同一应用中的所有服务都将添加到 DNS 服务中,而不需要显示的设置服务链接,链接可以在服务中的**服务链接**下进行设置。 8 | - 您可以通过服务名称解析相同应用中的容器。 9 | - 如果您需要一个与服务名称不同的自定义的 DNS 名称,您需要设置一个链接以设置自定义的 DNS 名称。 10 | - 如果使用服务别名,则仍然需要链接。 11 | - 要使不同栈中的服务可解析,可以使用`<服务名>.<栈名>`,而不需要显示的设置服务链接,链接可以在服务中的**服务链接**下进行设置。 12 | 13 | 因为 Rancher 的 Overlay 网络为每个容器提供了不同的 IP 地址,所以不需要处理端口映射,并且不需要处理像重复的服务在不同端口上侦听的情况。因此,简单的 DNS 服务足以处理服务发现。 14 | 15 | 了解更多关于[Cattle 环境](/docs/rancher1/infrastructure/cattle/internal-dns-service/_index)的内部 DNS 服务。 16 | -------------------------------------------------------------------------------- /docs/rancher1/rancher-service/load-balancer/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 负载均衡 3 | --- 4 | 5 | Rancher 支持在 Rancher 内使用不同负载均衡器驱动。您可以通过向目标服务添加规则使负载均衡器将网络和应用程序流量分配到容器中。Rancher 将自动将目标服务的容器自动注册为 Rancher 的负载均衡目标。 6 | 7 | 默认情况下,Rancher 提供了一个基于 HAProxy 的托管负载均衡器,您可以手动扩容到多个主机上。我们计划添加额外的负载均衡器驱动,所有负载均衡器的选项将是相同的,不管负载均衡器种类。 8 | 9 | 对于 Cattle 引擎的环境,可以参考[UI](/docs/rancher1/infrastructure/cattle/adding-load-balancers/_index#如何在ui上新增一个负载均衡)和[Rancher Compose](/docs/rancher1/infrastructure/cattle/adding-load-balancers/_index#用rancher-compose-添加负载均衡)了解更多信息,并且在[UI](/docs/rancher1/infrastructure/cattle/adding-load-balancers/_index#adding-a-load-balancer-in-the-ui)和[Rancher Compose](/docs/rancher1/infrastructure/cattle/adding-load-balancers/_index#adding-a-load-balancer-with-rancher-compose)中有相关的例子。 10 | 11 | 对于 Kubernetes 的环境,详细了解如何启动云厂商提供的外部负载均衡器服务,或者使用 Rancher 负载均衡器实现 Kubernetes 环境中的 Ingress 支持。 12 | -------------------------------------------------------------------------------- /docs/rancher2.5/admin-settings/authentication/local/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 本地验证 3 | description: 在配置外部身份验证系统之前,您将默认使用本地身份验证。本地身份验证是 Rancher 通过验证存储在本地的用户名和密码,对用户进行验证,验证通过后可以登录到 Rancher。默认情况下,用于首次登录 Rancher 的 `admin` 用户就是一个本地用户。无论是否使用外部身份验证,都应创建一些本地身份验证用户,以便在外部身份验证服务遇到问题时继续使用 Rancher。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 系统管理员指南 15 | - 登录认证 16 | - 本地验证 17 | --- 18 | 19 | 在配置外部认证系统之前,您将默认使用本地身份认证。本地身份认证是 Rancher 通过验证存储在本地的用户名和密码,对用户进行验证,验证通过后可以登录到 Rancher。默认情况下,用于首次登录 Rancher 的 `admin` 用户就是一个本地用户。 20 | 21 | ## 添加本地用户 22 | 23 | 无论是否使用外部认证系统,都应创建一些本地身份认证的用户,以便在外部认证服务遇到问题时继续使用 Rancher。 24 | 25 | 1. 在**全局**视图中,在导航栏中选择**用户**。 26 | 27 | 2. 单击**添加用户**。完成**添加用户**表单信息填写。单击**创建**按钮,完成用户创建。 28 | -------------------------------------------------------------------------------- /docs/rancher2.5/admin-settings/rke-templates/overrides/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 覆盖模板设置 3 | description: 用户创建 RKE 模板时,模板中的每个参数设置在 Rancher UI 中都有一个开关,指示用户在使用该模板创建集群时,是否可以修改该参数。打开开关表示用户可以修改对应的参数,关闭开关表示用户无权修改对应的参数。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 系统管理员指南 15 | - RKE模板 16 | - 覆盖模板设置 17 | --- 18 | 19 | 用户创建 RKE 模板时,模板中的每个参数在 Rancher UI 中都有一个开关,指示用户在使用该模板创建集群时,是否可以修改该参数。打开开关表示用户可以修改对应的参数,关闭开关表示用户无权修改对应的参数。 20 | 21 | 使用模板创建集群后,除非模板所有者将其标记为**允许用户覆盖**,否则用户无法更新模板中定义的任何设置。如果模板被更新,将会产生一个模版的[新修订版](/docs/rancher2.5/admin-settings/rke-templates/creating-and-revising/_index),新修订版在原版的基础上修改了某些集群参数,或允许用户更改某些集群参数。您可以将集群使用的模板从原版升级到新修订版,修改后的参数会应用在集群中。 22 | 23 | 当管理员在 RKE 模板上将参数设置为**允许用户覆盖**时,这意味着用户必须在集群创建过程中填写参数对应的字段值,并且用户可以在编辑集群时修改这些参数。 24 | 25 | RKE 模板的**允许用户覆盖**选项的适用场景如下: 26 | 27 | - 某些参数需要保持灵活性,以便随时更新。 28 | - 用户将快照备份到 S3 的云凭证,需要输入秘钥验证,而每个用户的秘钥是不同的,所以这个参数要设置为**允许用户覆盖**。 29 | -------------------------------------------------------------------------------- /docs/rancher2.5/backups/configuration/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Rancher备份配置参考 3 | description: description 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 备份与恢复 15 | - rancher2.5 16 | --- 17 | 18 | - [备份配置](./back-up-config/_index) 19 | - [恢复配置](./restore-config/_index) 20 | - [存储位置配置](./storage-config/_index) 21 | - [备份和恢复自定义资源示例](../examples/_index) 22 | -------------------------------------------------------------------------------- /docs/rancher2.5/backups/docker-installs/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Docker安装的Rancher的备份和还原 3 | description: 在 Rancher v2.5 中,用 Docker 安装的 Rancher 的备份和恢复步骤并没有改变。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 备份与恢复 15 | - rancher2.5 16 | - Docker安装的Rancher的备份和还原 17 | --- 18 | 19 | 在 Rancher v2.5 中,用 Docker 安装的 Rancher 的备份和恢复步骤并没有改变。 20 | 21 | - [备份](/docs/rancher2.5/backups/docker-installs/docker-backups/_index) 22 | - [恢复](/docs/rancher2.5/backups/docker-installs/docker-restores/_index) 23 | -------------------------------------------------------------------------------- /docs/rancher2.5/best-practices/rancher-managed/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Rancher管理集群的最佳实践 3 | description: 本文提供了日志、监控、设置容器的集群以及 Rancher 托管 vSphere 集群的最佳实践。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - rancher2.0 中文教程 15 | - 最佳实践 16 | - Rancher管理集群的最佳实践 17 | --- 18 | 19 | ## 日志 20 | 21 | 请参阅[日志最佳实践](./logging/_index),了解我们对集群级日志和应用程序日志的建议。 22 | 23 | ## 监控 24 | 25 | 配置合理的监控和告警规则对于安全、可靠地运行任何生产工作负载至关重要。请参考[监控最佳实践](./monitoring/_index)了解我们的建议。 26 | 27 | ## 设置容器的技巧 28 | 29 | 运行构建良好的容器可以极大地影响环境的整体性能和安全性。参考[设置容器的技巧](./containers/_index)获取提示。 30 | 31 | ## Rancher 托管 vSphere 集群的最佳实践 32 | 33 | [Rancher 托管 vSphere 集群的最佳实践](./managed-vsphere/_index)除了 VMware 记录的标准 vSphere 最佳实践外,还概述了在 vSphere 环境中配置下游 Rancher 集群的参考架构。 34 | -------------------------------------------------------------------------------- /docs/rancher2.5/cluster-admin/kubectl-delete-evicted-pods/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 删除状态为 Failed、Evicted 的 Pod 3 | description: 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 集群管理员指南 15 | - 集群访问控制 16 | - 删除状态为Failed、Evicted的Pod 17 | --- 18 | 19 | ```bash 20 | #!/bin/bash 21 | kubectl get pods --all-namespaces -o go-template='{{range .items}} \ 22 | {{if eq .status.phase "Failed"}} {{if eq .status.reason "Evicted"}} {{.metadata.name}}{{" "}} {{.metadata.namespace}}{{"\n"}} \ 23 | {{end}} \ 24 | {{end}} \ 25 | {{end}}' | while read epod namespace; do kubectl -n $namespace delete pod $epod; done 26 | ``` 27 | -------------------------------------------------------------------------------- /docs/rancher2.5/cluster-admin/volumes-and-storage/examples/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 示例说明 3 | description: Rancher 支持具有各种卷插件的持久存储。但是,在使用这些插件将持久性存储绑定到您的工作负载之前,您必须先配置存储本身,无论它是来自云提供商还是由您自行管理。Rancher 提供了一些关于如何配置常用存储服务的文档,供您参考。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 集群管理员指南 15 | - 存储卷和存储类 16 | - 创建存储示例 17 | - 示例说明 18 | --- 19 | 20 | Rancher 支持具有各种卷插件的持久存储。但是,在使用这些插件将持久性存储绑定到您的工作负载之前,您必须先配置存储本身,无论它是来自云提供商还是由您自行管理。 21 | 22 | Rancher 提供了一些关于如何配置常用的存储服务的文档,供您参考: 23 | 24 | - [NFS](/docs/rancher2.5/cluster-admin/volumes-and-storage/examples/nfs/_index) 25 | - [vSphere](/docs/rancher2.5/cluster-admin/volumes-and-storage/examples/vsphere/_index) 26 | - [亚马逊 EBS](/docs/rancher2.5/cluster-admin/volumes-and-storage/examples/ebs/_index) 27 | -------------------------------------------------------------------------------- /docs/rancher2.5/cluster-admin/volumes-and-storage/examples/ebs/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Amazon EBS 存储 3 | description: 本章节描述的是如何在 EC2 里启用 Amazon EBS。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 集群管理员指南 15 | - 存储卷和存储类 16 | - 创建存储示例 17 | - Amazon EBS 存储 18 | --- 19 | 20 | 本章节描述的是如何在 EC2 里启用 Amazon EBS。 21 | 22 | 1. 在 EC2 的控制台里,在左边的面板中找到**弹性块存储**,然后单击**卷**。 23 | 1. 单击**创建卷**。 24 | 1. 可选:配置卷的大小或其他选项。该卷应与其将连接到的 EC2 实例在相同的可用区。 25 | 1. 单击**创建卷**。 26 | 1. 单击**关闭**。 27 | 28 | **结果:**持久化存储创建了 EBS 持久化存储。 29 | 30 | 关于如何在 Rancher 里创建新的存储,可以浏览[配置现有的存储](/docs/rancher2.5/cluster-admin/volumes-and-storage/attaching-existing-storage/_index)。 31 | -------------------------------------------------------------------------------- /docs/rancher2.5/cluster-provisioning/rke-clusters/cloud-providers/vsphere/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: vSphere 3 | --- 4 | 5 | 在本节中,您将了解如何在 vSphere 中为 Rancher 管理的 RKE Kubernetes 集群设置 vSphere 云提供商。 6 | 7 | 在 Rancher 中创建 vSphere 集群时,请遵循这些步骤: 8 | 9 | 1. 将**云提供商**选项设置为 "custom"。 10 | 1. 单击**以 YAML 形式编辑**。 11 | 1. 在预先填充的集群 YAML 中插入以下结构。 12 | 从 Rancher v2.3+开始,这个结构必须放在`rancher_kubernetes_engine_config`下。在 v2.3 之前的版本中,它必须被定义为一个顶层字段。注意`name`必须设置为`vsphere`。 13 | 14 | ```yaml 15 | rancher_kubernetes_engine_config: # Required as of Rancher v2.3+ 16 | cloud_provider: 17 | name: vsphere 18 | vsphereCloudProvider: [Insert provider configuration] 19 | ``` 20 | 21 | Rancher 使用 RKE(Rancher Kubernetes Engine)来配置 Kubernetes 集群。有关`vsphereCloudProvider`指令属性的详细信息,请参考[RKE 文档中的 vSphere 配置参考](/docs/rke/config-options/cloud-providers/vsphere/config-reference/_index)。 22 | -------------------------------------------------------------------------------- /docs/rancher2.5/cluster-provisioning/rke-clusters/node-pools/vsphere/vsphere-node-template-config/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 配置vSphere节点模板 3 | --- 4 | 5 | Rancher 中的 vSphere 节点模板在以下 Rancher 版本中进行了更新。请参考以下链接,获取 Rancher 版本的最新配置参考。 6 | 7 | - [v2.3.3](/docs/rancher2.5/cluster-provisioning/rke-clusters/node-pools/vsphere/vsphere-node-template-config/2.3.3/_index) 8 | - [v2.3.0](/docs/rancher2.5/cluster-provisioning/rke-clusters/node-pools/vsphere/vsphere-node-template-config/2.3.0/_index) 9 | - [v2.2.0](./docs/rancher2.5/cluster-provisioning/rke-clusters/node-pools/vsphere/vsphere-node-template-config/2.2.0/_index) 10 | - [v2.0.4](/docs/rancher2.5/cluster-provisioning/rke-clusters/node-pools/vsphere/vsphere-node-template-config/2.0.4/_index) 11 | 12 | - 对于 v2.0.4 之前的 Rancher 版本,请参考[这个版本。](/docs/rancher2.5/cluster-provisioning/rke-clusters/node-pools/vsphere/vsphere-node-template-config/before-2.0.4/_index) 13 | -------------------------------------------------------------------------------- /docs/rancher2.5/deploy-across-clusters/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 跨集群部署应用程序概述 3 | description: 多集群应用程序功能用于跨集群部署应用程序 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - rancher 2.5 15 | - 跨集群部署应用程序 16 | - 概述 17 | --- 18 | 19 | ## Fleet 20 | 21 | _Rancher v2.5 可用_ 22 | 23 | Rancher v2.5 引入了 Fleet,这是一种跨集群部署应用的新方式。 24 | 25 | Fleet 是规模化的 GitOps,更多信息请参考[Fleet 部分](/docs/rancher2.5/deploy-across-clusters/fleet/_index)。 26 | 27 | ## 多集群应用程序 28 | 29 | 在 v2.5 之前的 Rancher 中,多集群应用程序功能用于跨集群部署应用程序。请参考文档[这里](/docs/rancher2.5/deploy-across-clusters/multi-cluster-apps/_index)。 30 | -------------------------------------------------------------------------------- /docs/rancher2.5/deploy-across-clusters/fleet/architecture/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 架构 3 | description: Fleet 可以管理来自 git 的原始 Kubernetes YAML、Helm chart、Kustomize 或三者的任何组合的部署。无论来源如何,所有的资源都被动态地转化为 Helm chart,Helm 被用作引擎来将所有资源部署到集群中。这给了你高度的控制、一致性和可审计性。Fleet 不仅注重扩展能力,而且让人对集群上安装的东西有高度的控制和可见性。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 跨集群部署应用 15 | - Fleet 16 | - 架构 17 | --- 18 | 19 | Fleet 可以管理来自 git 的原始 Kubernetes YAML、Helm chart、Kustomize 或三者的任何组合的部署。无论来源如何,所有的资源都被动态地转化为 Helm chart,Helm 被用作引擎来将所有资源部署到集群中。这给了你高度的控制、一致性和可审计性。Fleet 不仅注重扩展能力,而且让人对集群上安装的东西有高度的控制和可见性。 20 | 21 | ![Architecture](/img/rancher/fleet-architecture.svg) 22 | -------------------------------------------------------------------------------- /docs/rancher2.5/deploy-across-clusters/fleet/windows/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Windows 支持 3 | description: 在 Rancher v2.5.6 之前,`agent` 在带有 Windows 节点的下游集群上没有本地 Windows manifests。这将导致集群的`agent` pod 失败。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 跨集群部署应用 15 | - Fleet 16 | - Windows 支持 17 | --- 18 | 19 | 在 Rancher v2.5.6 之前,`agent` 在带有 Windows 节点的下游集群上没有本地 Windows manifests。这将导致集群的`agent` pod 失败。 20 | 21 | 如果你从旧版本的 Rancher 升级到 v2.5.6+,你可以通过以下工作流程在*下游集群*中部署一个工作的 `agent`。 22 | 23 | 1. Cordon 所有 Windows 节点。 24 | 1. 对 `agent` 的工作负载应用以下的容忍度。 25 | 1. Uncordon 所有 Windows 节点。 26 | 1. 删除所有 `agent` pod。用新的权限创建新的 pod。 27 | 1. 一旦 `agent` pods 运行,并为 Fleet 启用了自动更新功能,它们应该被更新到与 Windows 兼容的 `agent` 版本。 28 | 29 | ```yaml 30 | tolerations: 31 | - effect: NoSchedule 32 | key: cattle.io/os 33 | operator: Equal 34 | value: linux 35 | ``` 36 | -------------------------------------------------------------------------------- /docs/rancher2.5/faq/deprecated-features-25x/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Rancher 2.5已弃用的功能 3 | description: kubectl是一个对 Kubernetes 运行命令的 CLI 命令行工具。您将在 Rancher 2.x 的诸多运维和管理任务上需要使用它。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 常见问题 15 | - Rancher 2.5已弃用的功能 16 | --- 17 | 18 | ## Rancher 的废弃策略是什么? 19 | 20 | 从 Rancher 2.5 开始,我们在支持[服务条款](https://rancher.com/support-maintenance-terms)中发布了官方的废弃策略。 21 | 22 | ## 我在哪里可以找到 Rancher 2.5 中哪些功能已经被废弃? 23 | 24 | Rancher 将在 GitHub 上的 Rancher[发布说明](https://github.com/rancher/rancher/releases/tag/v2.5.0)中发布已废弃的功能。 25 | 26 | ## 当一个功能被标记为废弃时,我可以期待什么? 27 | 28 | 在被标记为弃用的功能的版本中,它仍然可以使用和支持,允许按照通常的程序进行升级。一旦升级,用户/管理员应该在升级到被标记为删除的版本之前,开始计划从废弃的功能中移除。对于新的部署,建议不要使用被废弃的功能。 29 | -------------------------------------------------------------------------------- /docs/rancher2.5/faq/etcd/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: ETCD 3 | description: kubectl是一个对 Kubernetes 运行命令的 CLI 命令行工具。您将在 Rancher 2.x 的诸多运维和管理任务上需要使用它。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 常见问题 15 | - ETCD 16 | --- 17 | 18 | _原文链接: https://coreos.com/etcd/docs/latest/faq.html_ 19 | 20 | ## 1. 客户端必须向 etcd leader 发送请求吗? 21 | 22 | Raft is leader-based, leader 处理所有需要一致性的客户机请求。但客户端不需要知道哪个节点是 leader,所有发送给跟随者的一致性请求都会自动转发给 leader。不需要协商一致的请求(例如,序列化读取)可以由任何集群成员处理。 23 | 24 | ## 2. 系统要求 25 | 26 | 由于 etcd 将数据写入磁盘,因此强烈建议使用 SSD 或者超高速磁盘来运行 etcd 服务。为防止性能下降或无意中存储空间耗尽,etcd 强制设置 2GB 默认存储大小配额,可以通过`--quota-backend-bytes`配置配额,最高可配置为 8GB。空间配额用来保障集群可靠运行,如果没有限制配额,当键空间变大之后,直到耗尽磁盘空间。当任意节点超出空间配额,那么当前 etcd 服务将进入维护状态,只接受`读/删`操作。只有释放了足够空间、去碎片化了后端数据库并且清理了空间配额之后,集群才能继续正常操作。 27 | 28 | ## 3. etcd 集群大小 29 | 30 | 从理论上讲,没有硬性限制。但是,一个 etcd 集群不应该超过七个节点。 31 | -------------------------------------------------------------------------------- /docs/rancher2.5/faq/networking/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 常见问题 3 | description: 关于网络的常见问题 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 常见问题 15 | - 关于网络的常见问题 16 | --- 17 | 18 | 关于网络的常见问题 19 | 20 | - [CNI 网络插件](/docs/rancher2.5/faq/networking/cni-providers/_index) 21 | - [Canal 网络驱动下,Pod MTU 值大于主机 flannel.1MTU 值](/docs/rancher2.5/faq/networking/mtu/_index) 22 | -------------------------------------------------------------------------------- /docs/rancher2.5/faq/networking/mtu/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Pod MTU 值大于主机 flannel.1MTU 值 3 | description: 关于网络的常见问题 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - Pod MTU值大于主机flannel.1MTU值 15 | --- 16 | 17 | ## 1. Canal 网络驱动下,Pod MTU 值大于主机 flannel.1MTU 值 18 | 19 | 1. 编辑配置映射文件 20 | 21 | kubectl --kubeconfig=kube_configxxx.yml edit configmaps -n kube-system canal-config 22 | 23 | 2. 在`"type": "calico"`下面添加`"mtu": 1450` 24 | 25 | ![image-20181101183954443](/img/rancher/old-doc/image-20181101183954443.png) 26 | 27 | 3. 删除 Canal Pod 让它重建 28 | 29 | ```bash 30 | kubectl --kubeconfig=kube_configxxx.yml get pod -n kube-system |grep canal | \ 31 | awk '{print $1}' | \ 32 | xargs kubectl --kubeconfig=kube_configxxx.yml delete -n kube-system pod 33 | ``` 34 | -------------------------------------------------------------------------------- /docs/rancher2.5/faq/security/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 安全 3 | description: 本节旨在回答关于Rancher是否提供安全加固指南和CIS扫描结果的相关问题。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 常见问题 15 | - 安全 16 | --- 17 | 18 | **Rancher 提供安全加固指南吗?** 19 | 20 | 您可于[安全](/docs/rancher2.5/security/_index)章节查看安全加固指导。 21 | 22 | **当通过 CIS benchmark 标准扫描 rancher 的 Kubernetes 集群,结果是什么?** 23 | 24 | 我们对一个加固的 Rancher Kubernetes 集群进行了 CIS benchmark 扫描,其测试结果可以在[安全](/docs/rancher2.5/security/_index) 章节查看。 25 | 26 | **还有其他方式确保 Rancher 的安全性吗** 27 | 28 | 您可于[安全](/docs/rancher2.5/security/_index)章节查看我们是如何保证 Rancher 是安全的。例如我们会定期找到第三方安全公司对 Rancher 的安全性进行测试。 29 | -------------------------------------------------------------------------------- /docs/rancher2.5/installation/other-installation-methods/install-rancher-on-linux/rollbacks/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 回滚指南 3 | description: 要将 Rancher 回滚到以前的版本,请使用`INSTALL_RANCHERD_VERSION`环境变量中指定的以前版本重新运行安装脚本。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 在Linux操作系统上安装Rancher 15 | - 回滚指南 16 | --- 17 | 18 | RancherD 是一个实验性功能。 19 | 20 | 要将 Rancher 回滚到以前的版本,请使用`INSTALL_RANCHERD_VERSION`环境变量中指定的以前版本重新运行安装脚本。 21 | -------------------------------------------------------------------------------- /docs/rancher2.5/installation/resources/advanced/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 高级配置选项 3 | --- 4 | 5 | 本节中的文件包含了不太常见的用例资源。 6 | -------------------------------------------------------------------------------- /docs/rancher2.5/installation/resources/chart-options/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Rancher Helm chart 选项 3 | description: Rancher Helm chart 选项 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 安装指南 15 | - 资料、参考和高级选项 16 | - Rancher高可用Helm2安装 17 | - 安装 Rancher 18 | - Chart 安装选项 19 | --- 20 | 21 | Rancher Helm chart 选项参考移至[本页](/docs/rancher2.5/installation/install-rancher-on-k8s/chart-options/_index)。 22 | -------------------------------------------------------------------------------- /docs/rancher2.5/installation/resources/k8s-tutorials/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: K8s使用教程 3 | --- 4 | 5 | 本节包含如何安装 Rancher 服务器可以安装的 Kubernetes 集群的信息。 6 | 7 | 在 v2.4 之前的 Rancher 中,Rancher 服务器需要运行在 RKE Kubernetes 集群上。 8 | 9 | 在 Rancher v2.4.x 中,Rancher 需要运行在 RKE Kubernetes 集群或 K3s Kubernetes 集群上。 10 | 11 | 在 Rancher v2.5 中,Rancher 可以运行在任何 Kubernetes 集群上。 12 | -------------------------------------------------------------------------------- /docs/rancher2.5/installation/resources/k8s-tutorials/infrastructure-tutorials/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 基础设施教程 3 | --- 4 | 5 | 要为具有外部 DB 的高可用性 K3s Kubernetes 集群设置基础设施,请参考[本页面](/docs/rancher2.5/installation/resources/k8s-tutorials/infrastructure-tutorials/infra-for-ha-with-external-db/_index)。 6 | 7 | 要为高可用性的 RKE Kubernetes 集群设置基础设施,请参考[本页](/docs/rancher2.5/installation/resources/k8s-tutorials/infrastructure-tutorials/infra-for-ha/_index)。 8 | -------------------------------------------------------------------------------- /docs/rancher2.5/istio/configuration-reference/canal-and-project-network/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 配置项目网络隔离的额外步骤 3 | --- 4 | 5 | 如果您的集群满足以下条件: 6 | 7 | - 已启用 Canal 网络插件。 8 | - 启用了项目网络隔离选项。 9 | - 在 Rancher v2.5.8 之前使用 Rancher 的 Canal 网络插件,或者你在 V2.5.8 以上使用 Rancher 与任何支持执行 Kubernetes 网络策略的 RKE 网络插件,如 Canal 或 Cisco ACI 插件。 10 | - 安装了 Istio Ingress 模块。 11 | 12 | Istio Ingress Gateway pod 在默认情况下无法将入口流量重定向到工作负载。这是因为所有的命名空间都无法从安装 Istio 的命名空间访问。您有两个选择: 13 | 14 | 第一个选项是在您打算由 Istio 控制入口的每个命名空间中添加一个新的网络策略。你的策略应该包括以下几行。 15 | 16 | ```yaml 17 | - podSelector。 18 | matchLabels.app: istio-ingressgateway: 19 | app: istio-ingressgateway. 20 | ``` 21 | 22 | 第二种选择是将`istio-system`命名空间移到`system`项目中,默认情况下,`system`项目不在网络隔离范围内。 23 | -------------------------------------------------------------------------------- /docs/rancher2.5/k8s-in-rancher/workloads/rollback-workloads/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 回滚工作负载 3 | description: 有时需要回滚应用程序到前一个版本,这可能是出于调试目的,也可能是因为升级没有按计划进行。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 用户指南 15 | - 工作负载 16 | - 回滚工作负载 17 | --- 18 | 19 | 有时需要回滚应用程序到前一个版本,这可能是出于调试目的,也可能是因为升级没有按计划进行。 20 | 21 | 1. 在**全局**视图,打开要回滚的工作负载所在的项目。 22 | 23 | 1. 找到要回滚的工作负载并选择**省略号 (...) > 回滚**。 24 | 25 | 1. 选择要回滚的修订版本,单击**回滚**。 26 | 27 | **结果:** 您的工作负载将恢复到您选择的先前版本。等待几分钟,等待动作完成。 28 | -------------------------------------------------------------------------------- /docs/rancher2.5/k8s-in-rancher/workloads/upgrade-workloads/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 升级工作负载 3 | description: 当镜像库中发布了新版本的应用程序镜像时,可以将运行以前应用程序版本的作负载升级到新版本。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 用户指南 15 | - 工作负载 16 | - 升级工作负载 17 | --- 18 | 19 | 当镜像库中发布了新版本的应用程序镜像时,可以将运行以前应用程序版本的作负载升级到新版本。 20 | 21 | 1. 在**全局**视图,打开要升级的工作负载所在的项目。 22 | 23 | 1. 找到要升级的工作负载,选择 **省略号 (... ) > 编辑**。 24 | 25 | 1. 将**Docker 镜像**更新为镜像库中上应用程序镜像的更新版本。 26 | 27 | 1. 更新您想要更改的任何其他选项。 28 | 29 | 1. 检查和编辑工作负载的**缩放/升级**策略。 30 | 31 | 这些选项控制如何升级到当前正在运行的容器。例如,对于可伸缩的部署,您可以选择是否在部署新 Pod 之前停止旧 Pod,或者相反,以及每批次升级的 Pod 个数。 32 | 33 | 1. 单击 **升级**。 34 | 35 | **结果:** 工作负载开始根据您的升级策略,升级其容器。请注意,扩大部署规模或更新升级/缩放策略不会导致 Pod 重建。 36 | -------------------------------------------------------------------------------- /docs/rancher2.5/logging/custom-resource-config/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 配置自定义资源 3 | keywords: 以下自定义资源定义用于配置日志 4 | - rancher 5 | - rancher中文 6 | - rancher中文文档 7 | - rancher官网 8 | - rancher文档 9 | - Rancher 10 | - rancher 中文 11 | - rancher 中文文档 12 | - rancher cn 13 | - rancher 2.5 14 | - 日志服务 15 | - Rancher v2.5 的日志功能 16 | - 配置自定义资源 17 | --- 18 | 19 | 以下自定义资源定义用于配置日志: 20 | 21 | - [Flow 和 ClusterFlow](/docs/rancher2.5/logging/custom-resource-config/flows/_index) 22 | - [Output 和 ClusterOutput](/docs/rancher2.5/logging/custom-resource-config/outputs/_index) 23 | -------------------------------------------------------------------------------- /docs/rancher2.5/monitoring-alerting/configuration/advanced/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 高级配置 3 | --- 4 | 5 | ## Alertmanager 6 | 7 | 关于配置 Alertmanager 自定义资源的信息,请参见[此页面。](./alertmanager/_index) 8 | 9 | ## Prometheus 10 | 11 | 关于配置 Prometheus 自定义资源的信息,请参见[此页面。](./prometheus/_index) 12 | 13 | ## PrometheusRules 14 | 15 | 关于配置 Prometheus 自定义资源的信息,请参见[此页面。](./prometheusrules/_index) 16 | -------------------------------------------------------------------------------- /docs/rancher2.5/monitoring-alerting/configuration/advanced/prometheus/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Prometheus 配置 3 | --- 4 | 5 | 通常没有必要直接编辑 Prometheus 自定义资源,因为监控应用程序会根据 ServiceMonitors 和 PodMonitors 的变化自动更新它。 6 | 7 | > 本节假设你熟悉监控组件如何协同工作。要了解更多信息,请参阅[本节。](/docs/rancher2.5/monitoring-alerting/how-monitoring-works/_index) 8 | 9 | ## 关于 Prometheus 自定义资源 10 | 11 | Prometheus CR 定义了一个期望的 Prometheus deployment。Prometheus Operator 观察 Prometheus CR。当 CR 发生变化时,Prometheus Operator 会创建 `prometheus-rancher-monitoring-prometheus`,这是一个基于 CR 配置的 Prometheus deployment。 12 | 13 | Prometheus 的 CR 指定了一些细节,如规则和哪些 Alertmanagers 连接到 Prometheus。Rancher 为你建立了这个 CR。 14 | 15 | 监控 V2 版本只支持每个集群一个 Prometheus。然而,如果你想把监控限制在某些命名空间,你可能想编辑 Prometheus 的 CR。 16 | -------------------------------------------------------------------------------- /docs/rancher2.5/monitoring-alerting/guides/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 监控指南 3 | description: 本文档中的 PromQL 表达式可用于配置警报。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - rancher 2.5 15 | - 监控和告警 16 | - 监控指南 17 | --- 18 | 19 | - [启用监控](./enable-monitoring/_index) 20 | - [卸载监控](./uninstall/_index) 21 | - [监控工作负载](./monitoring-workloads/_index) 22 | - [自定义 Grafana 仪表盘](./customize-grafana/_index) 23 | - [持久化 Grafana 仪表盘](./persist-grafana/_index) 24 | - [调试高内存使用率](./memory-usage/_index) 25 | - [从监控 V1 迁移到 V2](./migrating/_index) 26 | -------------------------------------------------------------------------------- /docs/rancher2.5/monitoring-alerting/guides/uninstall/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 卸载监控 3 | --- 4 | 5 | 1. 从**集群资源管理器中,**点击 **应用和市场。** 6 | 1. 单击**已安装的应用程序**。 7 | 1. 进入 `cattle-monitoring-system` 命名空间,勾选 `rancher-monitoring-crd` 和 `rancher-monitoring`。 8 | 1. 单击**删除**。 9 | 1. 确认**删除**。 10 | 11 | **结果:** `rancher-monitoring`被卸载。 12 | 13 | > **关于持久化 Grafana 仪表盘的注意事项:**对于使用 Monitoring V2 v9.4.203 或以下版本的用户,卸载 Monitoring chart 将删除 cattle-dashboards 命名空间,这将删除所有持久化的仪表盘,除非该命名空间被标记为注释 `helm.sh/resource-policy: "keep"`。这个注释在 Monitoring V2 v14.5.100+中是默认添加的,但是如果你的集群中目前安装了旧版本的监控 chart,可以在卸载前手动应用在 cattle-dashboards 命名空间上。 14 | -------------------------------------------------------------------------------- /docs/rancher2.5/project-admin/pipelines/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: CI/CD 流水线 3 | --- 4 | 5 | 使用 Rancher,您可以与 GitHub 等版本控制系统集成,以设置持续集成(CI)流水线。 6 | 7 | 配置 Rancher 和 GitHub 等版本控制系统后,Rancher 将部署运行 Jenkins 的容器以自动化执行流水线: 8 | 9 | - 构建镜像 10 | - 验证镜像 11 | - 部署镜像到集群 12 | - 执行单元测试 13 | - 执行回归测试 14 | 15 | 有关详细信息,请参阅[流水线](/docs/rancher2.5/pipelines/_index)。 16 | -------------------------------------------------------------------------------- /docs/rancher2.5/quick-start-guide/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 入门必读 3 | description: Rancher提供这些快速入门手册的目的是帮助您快速地建造一个 Rancher 的沙盒,您可以在这个沙盒中评估 Rancher 是否满足您的需求。请注意,快速入门手册不适用于正式的生产环境,请参考[安装介绍](/docs/rancher2.5/installation/_index)获取适用于正式的生产环境的操作指导。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 快速入门 15 | - 入门必读 16 | --- 17 | 18 | Rancher 提供这些快速入门手册的目的是帮助您快速地建造一个 Rancher 的沙盒,您可以在这个沙盒中评估 Rancher 是否满足您的需求。请注意,快速入门手册不适用于正式的生产环境,请参考[安装介绍](/docs/rancher2.5/installation/_index)获取适用于正式的生产环境的操作指导。 19 | 20 | 目前 Rancher 提供了以下三本快速入门手册: 21 | 22 | - [部署 Rancher Server](/docs/rancher2.5/quick-start-guide/deployment/_index):使用对您来说最方便的方式运行 Rancher Server。 23 | 24 | - [部署工作负载](/docs/rancher2.5/quick-start-guide/workload/_index):部署一个简单的工作负载,然后暴露工作负载,这样您就可以从集群外部访问工作负载。 25 | 26 | - [命令行工具](/docs/rancher2.5/quick-start-guide/cli/_index):使用`kubectl`或 Rancher 命令行工具(Rancher CLI)管理 Rancher 实例。 27 | -------------------------------------------------------------------------------- /docs/rancher2.5/quick-start-guide/workload/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 介绍 3 | description: Rancher 提供了两本关于部署工作负载的快速入门手册,请单击以下链接查看详情。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 快速入门 15 | - 部署工作负载 16 | - 介绍 17 | --- 18 | 19 | Rancher 提供了两本关于部署工作负载的快速入门手册,请单击以下链接查看详情。 20 | 21 | - [部署带有 Ingress 的工作负载](/docs/rancher2.5/quick-start-guide/workload/quickstart-deploy-workload-ingress/_index) 22 | - [部署带有 NodePort 的工作负载](/docs/rancher2.5/quick-start-guide/workload/quickstart-deploy-workload-nodeport/_index) 23 | -------------------------------------------------------------------------------- /docs/rancher2.5/releases/v2.5.15.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 版本说明 - v2.5.15 3 | description: Rancher 2.5.15 版本于 2022 年 7 月 1 日发布。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 版本说明 15 | - v2.5.15 16 | --- 17 | 18 | Rancher 2.5.15 版本于 2022 年 7 月 1 日发布。单击[这里](https://github.com/rancher/rancher/releases/tag/v2.5.15)查看英文版版本说明。 19 | 20 | Rancher 2.5.15 是 [2.5.14](/docs/rancher2.5/releases/v2.5.14) 的一个镜像版本,其中只有一项用于解决以下问题的更改: 21 | 22 | - Rancher 试图控制下游集群的大量流量时会出现一个主要的性能问题。此机制未正确处理断开的连接,并会导致无限期锁定。详见 [#38097](https://github.com/rancher/rancher/issues/38097)。 -------------------------------------------------------------------------------- /docs/rancher2.5/security/best-practices/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Kubernetes 安全最佳实践 3 | description: Rancher 致力于向社区披露我们产品的安全问题。Rancher 将对修复的问题通过发布 CVEs(通用漏洞披露,Common Vulnerabilities and Exposures)通知社区。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 安全 15 | - Kubernetes 安全最佳实践 16 | --- 17 | 18 | ## 限制 cloud metadata API API 访问 19 | 20 | AWS、Azure 或 GCP 等云提供商通常在本地向实例暴露元数据服务。默认情况下,在云实例上运行的 pod 可以访问这个端点,包括 EKS、AKS 或 GKE 等托管 Kubernetes 提供商中的 pod,并且可以包含该节点的云凭证、kubelet 凭证等配置数据或其他敏感数据。为了减轻在云平台上运行时的这种风险,请遵循 [Kubernetes 安全建议](https://kubernetes.io/docs/tasks/administer-cluster/securing-a-cluster/#restricting-cloud-metadata-api-access):限制给予实例凭证的权限,使用网络策略来限制 pod 对元数据 API 的访问,并避免使用供应数据来传递 secret。 21 | -------------------------------------------------------------------------------- /docs/rancher2.5/user-settings/preferences/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 用户偏好 3 | description: 每个用户都可以设置自己的用户偏好,按照自己的喜好调整 Rancher UI 界面。单击顶部菜单右侧的用户头像,选择设置,然后可以配置 UI 的主题、修改登录密码或修改页面显示的表格行数。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 用户设置 15 | - 用户偏好 16 | --- 17 | 18 | 每个用户都可以设置自己的用户偏好,按照自己的喜好调整 Rancher UI 界面。单击顶部菜单右侧的用户头像,选择**设置**,可以配置 UI 的主题、修改登录密码或修改页面显示的表格行数。 19 | 20 | - 修改主题 21 | 22 | 您可以设置 Rancher UI 的主题。如果您选择**自动**,Rancher 会在晚上 6:00 将背景颜色转换为深色,次日早上六点将背景颜色转换为浅色,您也可以通过顶部菜单右侧的按键自行切换深色模式/浅色模式。 23 | 24 | - 修改账户信息 25 | 26 | 您可以修改登录 Rancher 的密码。单击顶部菜单右侧的用户头像,单击**设置 > 修改密码**,输入新旧密码完成验证即可。 27 | 28 | - 修改表格行数 29 | 30 | Rancher UI 有些页面以表格的形式展示 Rancher 的集群或部署的应用,您可以调整每页显示的行数,默认值是`50`,表示每个页面最多显示 50 行数据,超过 50 行的部分会分到下一个页面显示。您可以按照自己的偏好调整分页。 31 | -------------------------------------------------------------------------------- /docs/rancher2/admin-settings/authentication/local/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 本地验证 3 | description: 在配置外部身份验证系统之前,您将默认使用本地身份验证。本地身份验证是 Rancher 通过验证存储在本地的用户名和密码,对用户进行验证,验证通过后可以登录到 Rancher。默认情况下,用于首次登录 Rancher 的 `admin` 用户就是一个本地用户。无论是否使用外部身份验证,都应创建一些本地身份验证用户,以便在外部身份验证服务遇到问题时继续使用 Rancher。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 系统管理员指南 15 | - 登录认证 16 | - 本地验证 17 | --- 18 | 19 | 在配置外部认证系统之前,您将默认使用本地身份认证。本地身份认证是 Rancher 通过验证存储在本地的用户名和密码,对用户进行验证,验证通过后可以登录到 Rancher。默认情况下,用于首次登录 Rancher 的 `admin` 用户就是一个本地用户。 20 | 21 | ## 添加本地用户 22 | 23 | 无论是否使用外部认证系统,都应创建一些本地身份认证的用户,以便在外部认证服务遇到问题时继续使用 Rancher。 24 | 25 | 1. 在**全局**视图中,在导航栏中选择**用户**。 26 | 27 | 2. 单击**添加用户**。完成**添加用户**表单信息填写。单击**创建**按钮,完成用户创建。 28 | -------------------------------------------------------------------------------- /docs/rancher2/admin-settings/rke-templates/overrides/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 覆盖模板设置 3 | description: 用户创建 RKE 模板时,模板中的每个参数设置在 Rancher UI 中都有一个开关,指示用户在使用该模板创建集群时,是否可以修改该参数。打开开关表示用户可以修改对应的参数,关闭开关表示用户无权修改对应的参数。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 系统管理员指南 15 | - RKE模板 16 | - 覆盖模板设置 17 | --- 18 | 19 | 用户创建 RKE 模板时,模板中的每个参数在 Rancher UI 中都有一个开关,指示用户在使用该模板创建集群时,是否可以修改该参数。打开开关表示用户可以修改对应的参数,关闭开关表示用户无权修改对应的参数。 20 | 21 | 使用模板创建集群后,除非模板所有者将其标记为**允许用户覆盖**,否则用户无法更新模板中定义的任何设置。如果模板被更新,将会产生一个模版的[新修订版](/docs/rancher2/admin-settings/rke-templates/creating-and-revising/_index),新修订版在原版的基础上修改了某些集群参数,或允许用户更改某些集群参数。您可以将集群使用的模板从原版升级到新修订版,修改后的参数会应用在集群中。 22 | 23 | 当管理员在 RKE 模板上将参数设置为**允许用户覆盖**时,这意味着用户必须在集群创建过程中填写参数对应的字段值,并且用户可以在编辑集群时修改这些参数。 24 | 25 | RKE 模板的**允许用户覆盖**选项的适用场景如下: 26 | 27 | - 某些参数需要保持灵活性,以便随时更新。 28 | - 用户将快照备份到 S3 的云凭证,需要输入秘钥验证,而每个用户的秘钥是不同的,所以这个参数要设置为**允许用户覆盖**。 29 | -------------------------------------------------------------------------------- /docs/rancher2/backups/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 备份和恢复 3 | description: description 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 备份和恢复 15 | --- 16 | 17 | 本节专门介绍如何在灾难情况下保护您的数据。 18 | 19 | 为了保护自己免受灾难情景的影响,您应该定期创建备份。 20 | 21 | - [备份](/docs/rancher2/backups/backup/_index) 22 | - [恢复](/docs/rancher2/backups/restore/_index) 23 | -------------------------------------------------------------------------------- /docs/rancher2/backups/backup/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 概述 3 | --- 4 | 5 | 本节包含如何创建 Rancher 数据的备份以及如何在灾难情况下恢复数据的信息。请根据您的备份类型单击以下链接阅读对应的操作指导: 6 | 7 | - [RKE 高可用备份](/docs/rancher2/backups/backup/ha-backups/_index) 8 | - [K3s 高可用备份](/docs/rancher2/backups/backup/k3s-backups/_index) 9 | - [Docker 单节点备份](/docs/rancher2/backups/backup/docker-backups/_index) 10 | -------------------------------------------------------------------------------- /docs/rancher2/backups/restore/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 概述 3 | --- 4 | 5 | 如果您在安全位置存储了备份,丢失了 Ranche Server 上的数据时,您可以使用这些备份恢复数据。 6 | 7 | - [单节点 Rancher 高可用恢复](/docs/rancher2/backups/restore/docker-restore/_index) 8 | - [RKE Rancher 高可用恢复](/docs/rancher2/backups/restore/ha-restore/_index) 9 | - [K3s Rancher 高可用恢复](/docs/rancher2/backups/restore/k3s-restore/_index) 10 | -------------------------------------------------------------------------------- /docs/rancher2/backups/restore/k3s-restore/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: K3s Rancher 高可用恢复 3 | description: 当将 Rancher 安装在高可用 Kubernetes 集群上时,我们建议使用外部数据库存储集群数据。数据库管理员将需要备份外部数据库,并在需要时从快照或 dump 中还原它。我们建议定期对数据库进行快照拍摄。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 备份和恢复指南 15 | - 恢复 16 | - K3s Rancher 高可用恢复 17 | --- 18 | 19 | 当将 Rancher 安装在高可用 Kubernetes 集群上时,我们建议使用外部数据库存储集群数据。 20 | 21 | 数据库管理员需要备份外部数据库,并在需要时从快照或 dump 中还原它。 22 | 23 | 我们建议定期对数据库进行快照拍摄。 24 | 25 | ## 创建快照并从快照还原数据库 26 | 27 | 有关获取数据库快照和从快照还原数据库的详细信息,请参阅官方数据库文档: 28 | 29 | - [MySQL 官方文档](https://dev.mysql.com/doc/refman/8.0/en/replication-snapshot-method.html) 30 | - [PostgreSQL 官方文档](https://www.postgresql.org/docs/8.3/backup-dump.html) 31 | - [官方 etcd 文档](https://github.com/etcd-io/website/tree/master/content/en/docs) 32 | -------------------------------------------------------------------------------- /docs/rancher2/cluster-admin/kubectl-delete-evicted-pods/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 删除状态为 Failed、Evicted 的 Pod 3 | description: 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 集群管理员指南 15 | - 集群访问控制 16 | - 删除状态为Failed、Evicted的Pod 17 | --- 18 | 19 | ```bash 20 | #!/bin/bash 21 | kubectl get pods --all-namespaces -o go-template='{{range .items}} \ 22 | {{if eq .status.phase "Failed"}} {{if eq .status.reason "Evicted"}} {{.metadata.name}}{{" "}} {{.metadata.namespace}}{{"\n"}} \ 23 | {{end}} \ 24 | {{end}} \ 25 | {{end}}' | while read epod namespace; do kubectl -n $namespace delete pod $epod; done 26 | ``` 27 | -------------------------------------------------------------------------------- /docs/rancher2/cluster-admin/volumes-and-storage/examples/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 示例说明 3 | description: Rancher 支持具有各种卷插件的持久存储。但是,在使用这些插件将持久性存储绑定到您的工作负载之前,您必须先配置存储本身,无论它是来自云提供商还是由您自行管理。Rancher 提供了一些关于如何配置常用存储服务的文档,供您参考。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 集群管理员指南 15 | - 存储卷和存储类 16 | - 创建存储示例 17 | - 示例说明 18 | --- 19 | 20 | Rancher 支持具有各种卷插件的持久存储。但是,在使用这些插件将持久性存储绑定到您的工作负载之前,您必须先配置存储本身,无论它是来自云提供商还是由您自行管理。 21 | 22 | Rancher 提供了一些关于如何配置常用的存储服务的文档,供您参考: 23 | 24 | - [NFS](/docs/rancher2/cluster-admin/volumes-and-storage/examples/nfs/_index) 25 | - [vSphere](/docs/rancher2/cluster-admin/volumes-and-storage/examples/vsphere/_index) 26 | - [亚马逊 EBS](/docs/rancher2/cluster-admin/volumes-and-storage/examples/ebs/_index) 27 | -------------------------------------------------------------------------------- /docs/rancher2/cluster-admin/volumes-and-storage/examples/ebs/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Amazon EBS 存储 3 | description: 本章节描述的是如何在 EC2 里启用 Amazon EBS。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 集群管理员指南 15 | - 存储卷和存储类 16 | - 创建存储示例 17 | - Amazon EBS 存储 18 | --- 19 | 20 | 本章节描述的是如何在 EC2 里启用 Amazon EBS。 21 | 22 | 1. 在 EC2 的控制台里,在左边的面板中找到**弹性块存储**,然后单击**卷**。 23 | 1. 单击**创建卷**。 24 | 1. 可选:配置卷的大小或其他选项。该卷应与其将连接到的 EC2 实例在相同的可用区。 25 | 1. 单击**创建卷**。 26 | 1. 单击**关闭**。 27 | 28 | **结果:**持久化存储创建了 EBS 持久化存储。 29 | 30 | 关于如何在 Rancher 里创建新的存储,可以浏览[配置现有的存储](/docs/rancher2/cluster-admin/volumes-and-storage/attaching-existing-storage/_index)。 31 | -------------------------------------------------------------------------------- /docs/rancher2/cluster-provisioning/rke-clusters/cloud-providers/vsphere/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: vSphere 3 | --- 4 | 5 | 在本节中,您将了解如何在 vSphere 中为 Rancher 管理的 RKE Kubernetes 集群设置 vSphere 云提供商。 6 | 7 | 在 Rancher 中创建 vSphere 集群时,请遵循这些步骤: 8 | 9 | 1. 将**云提供商**选项设置为 "custom"。 10 | 1. 单击**以 YAML 形式编辑**。 11 | 1. 在预先填充的集群 YAML 中插入以下结构。 12 | 从 Rancher v2.3+开始,这个结构必须放在`rancher_kubernetes_engine_config`下。在 v2.3 之前的版本中,它必须被定义为一个顶层字段。注意`name`必须设置为`vsphere`。 13 | 14 | ```yaml 15 | rancher_kubernetes_engine_config: # Required as of Rancher v2.3+ 16 | cloud_provider: 17 | name: vsphere 18 | vsphereCloudProvider: [Insert provider configuration] 19 | ``` 20 | 21 | Rancher 使用 RKE(Rancher Kubernetes Engine)来配置 Kubernetes 集群。有关`vsphereCloudProvider`指令属性的详细信息,请参考[RKE 文档中的 vSphere 配置参考](/docs/rke/config-options/cloud-providers/vsphere/config-reference/_index)。 22 | -------------------------------------------------------------------------------- /docs/rancher2/cluster-provisioning/rke-clusters/node-pools/vsphere/vsphere-node-template-config/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 配置vSphere节点模板 3 | --- 4 | 5 | Rancher 中的 vSphere 节点模板在以下 Rancher 版本中进行了更新。请参考以下链接,获取 Rancher 版本的最新配置参考。 6 | 7 | - [v2.3.3](/docs/rancher2/cluster-provisioning/rke-clusters/node-pools/vsphere/vsphere-node-template-config/2.3.3/_index) 8 | - [v2.3.0](/docs/rancher2/cluster-provisioning/rke-clusters/node-pools/vsphere/vsphere-node-template-config/2.3.0/_index) 9 | - [v2.2.0](./docs/rancher2/cluster-provisioning/rke-clusters/node-pools/vsphere/vsphere-node-template-config/2.2.0/_index) 10 | - [v2.0.4](/docs/rancher2/cluster-provisioning/rke-clusters/node-pools/vsphere/vsphere-node-template-config/2.0.4/_index) 11 | 12 | - 对于 v2.0.4 之前的 Rancher 版本,请参考[这个版本。](/docs/rancher2/cluster-provisioning/rke-clusters/node-pools/vsphere/vsphere-node-template-config/before-2.0.4/_index) 13 | -------------------------------------------------------------------------------- /docs/rancher2/faq/etcd/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: ETCD 3 | description: kubectl是一个对 Kubernetes 运行命令的 CLI 命令行工具。您将在 Rancher 2.x 的诸多运维和管理任务上需要使用它。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 常见问题 15 | - ETCD 16 | --- 17 | 18 | _原文链接: https://coreos.com/etcd/docs/latest/faq.html_ 19 | 20 | ## 1. 客户端必须向 etcd leader 发送请求吗? 21 | 22 | Raft is leader-based, leader 处理所有需要一致性的客户机请求。但客户端不需要知道哪个节点是 leader,所有发送给跟随者的一致性请求都会自动转发给 leader。不需要协商一致的请求(例如,序列化读取)可以由任何集群成员处理。 23 | 24 | ## 2. 系统要求 25 | 26 | 由于 etcd 将数据写入磁盘,因此强烈建议使用 SSD 或者超高速磁盘来运行 etcd 服务。为防止性能下降或无意中存储空间耗尽,etcd 强制设置 2GB 默认存储大小配额,可以通过`--quota-backend-bytes`配置配额,最高可配置为 8GB。空间配额用来保障集群可靠运行,如果没有限制配额,当键空间变大之后,直到耗尽磁盘空间。当任意节点超出空间配额,那么当前 etcd 服务将进入维护状态,只接受`读/删`操作。只有释放了足够空间、去碎片化了后端数据库并且清理了空间配额之后,集群才能继续正常操作。 27 | 28 | ## 3. etcd 集群大小 29 | 30 | 从理论上讲,没有硬性限制。但是,一个 etcd 集群不应该超过七个节点。 31 | -------------------------------------------------------------------------------- /docs/rancher2/faq/networking/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 常见问题 3 | description: 关于网络的常见问题 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 常见问题 15 | - 关于网络的常见问题 16 | --- 17 | 18 | 关于网络的常见问题 19 | 20 | - [CNI 网络插件](/docs/rancher2/faq/networking/cni-providers/_index) 21 | - [Canal 网络驱动下,Pod MTU 值大于主机 flannel.1MTU 值](/docs/rancher2/faq/networking/mtu/_index) 22 | -------------------------------------------------------------------------------- /docs/rancher2/faq/networking/mtu/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Pod MTU 值大于主机 flannel.1MTU 值 3 | description: 关于网络的常见问题 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - Pod MTU值大于主机flannel.1MTU值 15 | --- 16 | 17 | ## 1. Canal 网络驱动下,Pod MTU 值大于主机 flannel.1MTU 值 18 | 19 | 1. 编辑配置映射文件 20 | 21 | kubectl --kubeconfig=kube_configxxx.yml edit configmaps -n kube-system canal-config 22 | 23 | 2. 在`"type": "calico"`下面添加`"mtu": 1450` 24 | 25 | ![image-20181101183954443](/img/rancher/old-doc/image-20181101183954443.png) 26 | 27 | 3. 删除 Canal Pod 让它重建 28 | 29 | ```bash 30 | kubectl --kubeconfig=kube_configxxx.yml get pod -n kube-system |grep canal | \ 31 | awk '{print $1}' | \ 32 | xargs kubectl --kubeconfig=kube_configxxx.yml delete -n kube-system pod 33 | ``` 34 | -------------------------------------------------------------------------------- /docs/rancher2/faq/security/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 安全 3 | description: 本节旨在回答关于Rancher是否提供安全加固指南和CIS扫描结果的相关问题。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 常见问题 15 | - 安全 16 | --- 17 | 18 | **Rancher 提供安全加固指南吗?** 19 | 20 | 您可于[安全](/docs/rancher2/security/_index)章节查看安全加固指导。 21 | 22 | **当通过 CIS benchmark 标准扫描 rancher 的 Kubernetes 集群,结果是什么?** 23 | 24 | 我们对一个加固的 Rancher Kubernetes 集群进行了 CIS benchmark 扫描,其测试结果可以在[安全](/docs/rancher2/security/_index) 章节查看。 25 | 26 | **还有其他方式确保 Rancher 的安全性吗** 27 | 28 | 您可于[安全](/docs/rancher2/security/_index)章节查看我们是如何保证 Rancher 是安全的。例如我们会定期找到第三方安全公司对 Rancher 的安全性进行测试。 29 | -------------------------------------------------------------------------------- /docs/rancher2/helm-charts/faq/etcd/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: ETCD 3 | description: kubectl是一个对 Kubernetes 运行命令的 CLI 命令行工具。您将在 Rancher 2.x 的诸多运维和管理任务上需要使用它。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 常见问题 15 | - ETCD 16 | --- 17 | 18 | _原文链接: https://coreos.com/etcd/docs/latest/faq.html_ 19 | 20 | ## 1. 客户端必须向 etcd leader 发送请求吗? 21 | 22 | Raft is leader-based, leader 处理所有需要一致性的客户机请求。但客户端不需要知道哪个节点是 leader,所有发送给跟随者的一致性请求都会自动转发给 leader。不需要协商一致的请求(例如,序列化读取)可以由任何集群成员处理。 23 | 24 | ## 2. 系统要求 25 | 26 | 由于 etcd 将数据写入磁盘,因此强烈建议使用 SSD 或者超高速磁盘来运行 etcd 服务。为防止性能下降或无意中存储空间耗尽,etcd 强制设置 2GB 默认存储大小配额,可以通过`--quota-backend-bytes`配置配额,最高可配置为 8GB。空间配额用来保障集群可靠运行,如果没有限制配额,当键空间变大之后,直到耗尽磁盘空间。当任意节点超出空间配额,那么当前 etcd 服务将进入维护状态,只接受`读/删`操作。只有释放了足够空间、去碎片化了后端数据库并且清理了空间配额之后,集群才能继续正常操作。 27 | 28 | ## 3. etcd 集群大小 29 | 30 | 从理论上讲,没有硬性限制。但是,一个 etcd 集群不应该超过七个节点。 31 | -------------------------------------------------------------------------------- /docs/rancher2/helm-charts/faq/networking/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 常见问题 3 | description: 关于网络的常见问题 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 常见问题 15 | - 关于网络的常见问题 16 | --- 17 | 18 | 关于网络的常见问题 19 | 20 | - [CNI 网络插件](/docs/rancher2/faq/networking/cni-providers/_index) 21 | - [Canal 网络驱动下,Pod MTU 值大于主机 flannel.1MTU 值](/docs/rancher2/faq/networking/mtu/_index) 22 | -------------------------------------------------------------------------------- /docs/rancher2/helm-charts/faq/networking/mtu/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Pod MTU 值大于主机 flannel.1MTU 值 3 | description: 关于网络的常见问题 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - Pod MTU值大于主机flannel.1MTU值 15 | --- 16 | 17 | ## 1. Canal 网络驱动下,Pod MTU 值大于主机 flannel.1MTU 值 18 | 19 | 1. 编辑配置映射文件 20 | 21 | kubectl --kubeconfig=kube_configxxx.yml edit configmaps -n kube-system canal-config 22 | 23 | 2. 在`"type": "calico"`下面添加`"mtu": 1450` 24 | 25 | ![image-20181101183954443](/img/rancher/old-doc/image-20181101183954443.png) 26 | 27 | 3. 删除 Canal Pod 让它重建 28 | 29 | ```bash 30 | kubectl --kubeconfig=kube_configxxx.yml get pod -n kube-system |grep canal | \ 31 | awk '{print $1}' | \ 32 | xargs kubectl --kubeconfig=kube_configxxx.yml delete -n kube-system pod 33 | ``` 34 | -------------------------------------------------------------------------------- /docs/rancher2/helm-charts/faq/security/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 安全 3 | description: 本节旨在回答关于Rancher是否提供安全加固指南和CIS扫描结果的相关问题。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 常见问题 15 | - 安全 16 | --- 17 | 18 | **Rancher 提供安全加固指南吗?** 19 | 20 | 您可于[安全](/docs/rancher2/security/_index)章节查看安全加固指导。 21 | 22 | **当通过 CIS benchmark 标准扫描 rancher 的 Kubernetes 集群,结果是什么?** 23 | 24 | 我们对一个加固的 Rancher Kubernetes 集群进行了 CIS benchmark 扫描,其测试结果可以在[安全](/docs/rancher2/security/_index) 章节查看。 25 | 26 | **还有其他方式确保 Rancher 的安全性吗** 27 | 28 | 您可于[安全](/docs/rancher2/security/_index)章节查看我们是如何保证 Rancher 是安全的。例如我们会定期找到第三方安全公司对 Rancher 的安全性进行测试。 29 | -------------------------------------------------------------------------------- /docs/rancher2/installation/install-rancher-on-k8s/rollbacks/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 回滚必读 3 | description: 本节包含有关如何将 Rancher Server 回滚到以前版本的信息。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 安装指南 15 | - 高可用安装指南 16 | - 回滚必读 17 | --- 18 | 19 | ## 回滚到 v2.2.x-v2.4.x 20 | 21 | 要回滚到 v2.5 之前的 Rancher,请按照这里的步骤进行。[恢复备份 - Kubernetes 安装](/docs/rancher2/backups/restore/ha-restore/_index) 恢复 Rancher 服务器集群的快照会将 Rancher 恢复到快照时的版本和状态。 22 | 23 | 有关如何回滚安装了 Docker 的 Rancher 的信息,请参考[本页](/docs/rancher2/installation/other-installation-methods/single-node-docker/single-node-rollbacks/_index) 24 | 25 | > 受管集群对其状态具有权威性。这意味着恢复 rancher 服务器不会恢复工作负载部署或快照后在托管集群上所做的更改。 26 | 27 | ## 回滚到 v2.0.x-v2.1.x 28 | 29 | 不再支持回滚到 Rancher v2.0-v2.1。回滚到这些版本的说明保留在[这里](/docs/rancher2/backups/restore/ha-restore/2.0-2.1/_index),仅用于升级到 Rancher v2.2+不可行的情况。 30 | -------------------------------------------------------------------------------- /docs/rancher2/installation/other-installation-methods/behind-proxy/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: HTTP代理安装 3 | description: 在很多企业环境中,运行在企业内部的服务器或虚拟机不能直接访问互联网,但出于安全考虑,必须通过 HTTP(S)代理连接到外部服务。本教程将逐步介绍如何在这样的环境中设置高可用的 Rancher 安装。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 安装指南 15 | - 其他安装方法 16 | - HTTP代理安装 17 | --- 18 | 19 | ## 概述 20 | 21 | 在很多企业环境中,运行在企业内部的服务器或虚拟机不能直接访问互联网,但出于安全考虑,必须通过 HTTP(S)代理连接到外部服务。本教程将逐步介绍如何在这样的环境中设置高可用的 Rancher 安装。 22 | 23 | 另外,也可以在没有任何互联网访问的情况下,在完全离线的环境中安装并且使用 Rancher,详情请参考[离线安装指南](/docs/rancher2/installation/other-installation-methods/air-gap/_index)中有详细描述。 24 | -------------------------------------------------------------------------------- /docs/rancher2/installation/resources/advanced/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 高级配置选项 3 | --- 4 | 5 | 本节中的文件包含了不太常见的用例资源。 6 | -------------------------------------------------------------------------------- /docs/rancher2/installation/resources/advanced/cluster-yml-templates/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: cluster.yml 文件模板 3 | description: RKE 使用 cluster.yml 文件安装和配置您的 Kubernetes 集群。本节提供了 cluster.yml 文件的模板供您选择。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 安装指南 15 | - 资料、参考和高级选项 16 | - cluster.yml 文件模板 17 | --- 18 | 19 | RKE 使用 cluster.yml 文件安装和配置您的 Kubernetes 集群。本节提供了 cluster.yml 文件的模板供您选择。 20 | 21 | > 关于 cluster.yml 文件所有选项的详细描述,请查看[RKE 配置参考](/docs/rke/config-options/_index)。 22 | -------------------------------------------------------------------------------- /docs/rancher2/installation/resources/chart-options/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Rancher Helm chart 选项 3 | description: Rancher Helm chart 选项 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 安装指南 15 | - 资料、参考和高级选项 16 | - Rancher高可用Helm2安装 17 | - 安装 Rancher 18 | - Chart 安装选项 19 | --- 20 | 21 | Rancher Helm chart 选项参考移至[本页](/docs/rancher2/installation/install-rancher-on-k8s/chart-options/_index)。 22 | -------------------------------------------------------------------------------- /docs/rancher2/installation/resources/encryption/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 加密 3 | --- 4 | 5 | 本节包含了关于证书配置和`cert-manager`的信息。 6 | -------------------------------------------------------------------------------- /docs/rancher2/installation/resources/k8s-tutorials/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: K8s使用教程 3 | --- 4 | 5 | 本节包含如何安装 Rancher 服务器可以安装的 Kubernetes 集群的信息。 6 | 7 | 在 v2.4 之前的 Rancher 中,Rancher 服务器需要运行在 RKE Kubernetes 集群上。 8 | 9 | 在 Rancher v2.4.x 中,Rancher 需要运行在 RKE Kubernetes 集群或 K3s Kubernetes 集群上。 10 | 11 | 在 Rancher v2.5 中,Rancher 可以运行在任何 Kubernetes 集群上。 12 | -------------------------------------------------------------------------------- /docs/rancher2/installation/resources/k8s-tutorials/infrastructure-tutorials/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 基础设施教程 3 | --- 4 | 5 | 要为具有外部 DB 的高可用性 K3s Kubernetes 集群设置基础设施,请参考[本页面](/docs/rancher2/installation/resources/k8s-tutorials/infrastructure-tutorials/infra-for-ha-with-external-db/_index)。 6 | 7 | 要为高可用性的 RKE Kubernetes 集群设置基础设施,请参考[本页](/docs/rancher2/installation/resources/k8s-tutorials/infrastructure-tutorials/infra-for-ha/_index)。 8 | -------------------------------------------------------------------------------- /docs/rancher2/k8s-in-rancher/workloads/rollback-workloads/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 回滚工作负载 3 | description: 有时需要回滚应用程序到前一个版本,这可能是出于调试目的,也可能是因为升级没有按计划进行。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 用户指南 15 | - 工作负载 16 | - 回滚工作负载 17 | --- 18 | 19 | 有时需要回滚应用程序到前一个版本,这可能是出于调试目的,也可能是因为升级没有按计划进行。 20 | 21 | 1. 在**全局**视图,打开要回滚的工作负载所在的项目。 22 | 23 | 1. 找到要回滚的工作负载并选择**省略号 (...) > 回滚**。 24 | 25 | 1. 选择要回滚的修订版本,单击**回滚**。 26 | 27 | **结果:** 您的工作负载将恢复到您选择的先前版本。等待几分钟,等待动作完成。 28 | -------------------------------------------------------------------------------- /docs/rancher2/k8s-in-rancher/workloads/upgrade-workloads/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 升级工作负载 3 | description: 当镜像库中发布了新版本的应用程序镜像时,可以将运行以前应用程序版本的作负载升级到新版本。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 用户指南 15 | - 工作负载 16 | - 升级工作负载 17 | --- 18 | 19 | 当镜像库中发布了新版本的应用程序镜像时,可以将运行以前应用程序版本的作负载升级到新版本。 20 | 21 | 1. 在**全局**视图,打开要升级的工作负载所在的项目。 22 | 23 | 1. 找到要升级的工作负载,选择 **省略号 (... ) > 编辑**。 24 | 25 | 1. 将**Docker 镜像**更新为镜像库中上应用程序镜像的更新版本。 26 | 27 | 1. 更新您想要更改的任何其他选项。 28 | 29 | 1. 检查和编辑工作负载的**缩放/升级**策略。 30 | 31 | 这些选项控制如何升级到当前正在运行的容器。例如,对于可伸缩的部署,您可以选择是否在部署新 Pod 之前停止旧 Pod,或者相反,以及每批次升级的 Pod 个数。 32 | 33 | 1. 单击 **升级**。 34 | 35 | **结果:** 工作负载开始根据您的升级策略,升级其容器。请注意,扩大部署规模或更新升级/缩放策略不会导致 Pod 重建。 36 | -------------------------------------------------------------------------------- /docs/rancher2/project-admin/pipelines/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: CI/CD 流水线 3 | --- 4 | 5 | 使用 Rancher,您可以与 GitHub 等版本控制系统集成,以设置持续集成(CI)流水线。 6 | 7 | 配置 Rancher 和 GitHub 等版本控制系统后,Rancher 将部署运行 Jenkins 的容器以自动化执行流水线: 8 | 9 | - 构建镜像 10 | - 验证镜像 11 | - 部署镜像到集群 12 | - 执行单元测试 13 | - 执行回归测试 14 | 15 | 有关详细信息,请参阅[流水线](/docs/rancher2/pipelines/_index)。 16 | -------------------------------------------------------------------------------- /docs/rancher2/quick-start-guide/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 入门必读 3 | description: Rancher提供这些快速入门手册的目的是帮助您快速地建造一个 Rancher 的沙盒,您可以在这个沙盒中评估 Rancher 是否满足您的需求。请注意,快速入门手册不适用于正式的生产环境,请参考[安装介绍](/docs/rancher2/installation/_index)获取适用于正式的生产环境的操作指导。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 快速入门 15 | - 入门必读 16 | --- 17 | 18 | Rancher 提供这些快速入门手册的目的是帮助您快速地建造一个 Rancher 的沙盒,您可以在这个沙盒中评估 Rancher 是否满足您的需求。请注意,快速入门手册不适用于正式的生产环境,请参考[安装介绍](/docs/rancher2/installation/_index)获取适用于正式的生产环境的操作指导。 19 | 20 | 目前 Rancher 提供了以下三本快速入门手册: 21 | 22 | - [部署 Rancher Server](/docs/rancher2/quick-start-guide/deployment/_index):使用对您来说最方便的方式运行 Rancher Server。 23 | 24 | - [部署工作负载](/docs/rancher2/quick-start-guide/workload/_index):部署一个简单的工作负载,然后暴露工作负载,这样您就可以从集群外部访问工作负载。 25 | 26 | - [命令行工具](/docs/rancher2/quick-start-guide/cli/_index):使用`kubectl`或 Rancher 命令行工具(Rancher CLI)管理 Rancher 实例。 27 | -------------------------------------------------------------------------------- /docs/rancher2/quick-start-guide/workload/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 介绍 3 | description: Rancher 提供了两本关于部署工作负载的快速入门手册,请单击以下链接查看详情。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 快速入门 15 | - 部署工作负载 16 | - 介绍 17 | --- 18 | 19 | Rancher 提供了两本关于部署工作负载的快速入门手册,请单击以下链接查看详情。 20 | 21 | - [部署带有 Ingress 的工作负载](/docs/rancher2/quick-start-guide/workload/quickstart-deploy-workload-ingress/_index) 22 | - [部署带有 NodePort 的工作负载](/docs/rancher2/quick-start-guide/workload/quickstart-deploy-workload-nodeport/_index) 23 | -------------------------------------------------------------------------------- /docs/rancher2/user-settings/preferences/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 用户偏好 3 | description: 每个用户都可以设置自己的用户偏好,按照自己的喜好调整 Rancher UI 界面。单击顶部菜单右侧的用户头像,选择设置,然后可以配置 UI 的主题、修改登录密码或修改页面显示的表格行数。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - 用户设置 15 | - 用户偏好 16 | --- 17 | 18 | 每个用户都可以设置自己的用户偏好,按照自己的喜好调整 Rancher UI 界面。单击顶部菜单右侧的用户头像,选择**设置**,可以配置 UI 的主题、修改登录密码或修改页面显示的表格行数。 19 | 20 | - 修改主题 21 | 22 | 您可以设置 Rancher UI 的主题。如果您选择**自动**,Rancher 会在晚上 6:00 将背景颜色转换为深色,次日早上六点将背景颜色转换为浅色,您也可以通过顶部菜单右侧的按键自行切换深色模式/浅色模式。 23 | 24 | - 修改账户信息 25 | 26 | 您可以修改登录 Rancher 的密码。单击顶部菜单右侧的用户头像,单击**设置 > 修改密码**,输入新旧密码完成验证即可。 27 | 28 | - 修改表格行数 29 | 30 | Rancher UI 有些页面以表格的形式展示 Rancher 的集群或部署的应用,您可以调整每页显示的行数,默认值是`50`,表示每个页面最多显示 50 行数据,超过 50 行的部分会分到下一个页面显示。您可以按照自己的偏好调整分页。 31 | -------------------------------------------------------------------------------- /docs/rke/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 产品简介 3 | description: Rancher Kubernetes Engine,简称 RKE,是一个经过 CNCF 认证的 Kubernetes 安装程序。RKE 支持多种操作系统,包括 MacOS、Linux 和 Windows,可以在裸金属服务器(BMS)和虚拟服务器(Virtualized Server)上运行。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - RKE 15 | - 产品简介 16 | --- 17 | 18 | Rancher Kubernetes Engine,简称 RKE,是一个经过 CNCF 认证的 Kubernetes 安装程序。RKE 支持多种操作系统,包括 MacOS、Linux 和 Windows,可以在裸金属服务器(BMS)和虚拟服务器(Virtualized Server)上运行。 19 | 20 | 市面上的其他 Kubernetes 部署工具存在一个共性问题:在使用工具之前需要满足的先决条件比较多,例如,在使用工具前需要完成安装 kubelet、配置网络等一系列的繁琐操作。而 RKE 简化了部署 Kubernetes 集群的过程,只有一个先决条件:只要您使用的 Docker 是 RKE 支持的版本,就可以通过 RKE 安装 Kubernetes,部署和运行 Kubernetes 集群。RKE 既可以单独使用,作为创建 Kubernetes 集群的工具,也可以配合 Rancher2.x 使用,作为 Rancher2.x 的组件,在 Rancher 中部署和运行 Kubernetes 集群。 21 | -------------------------------------------------------------------------------- /docs/rke/config-options/authorization/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 授权 3 | description: 默认情况下,RKE 会启用 RBAC 授权策略。如果你想关闭 RBAC 授权策略,请在`cluster.yml`中将设置授权模式为`none`。虽然 RKE 支持手动关闭 RBAC 授权策略,但是关闭 RBAC 授权策略会有一定的风险,我们不建议用户关闭 RBAC 授权策略。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - RKE 15 | - 配置选项 16 | - 授权 17 | --- 18 | 19 | Kubernetes 支持多个[授权模块](https://kubernetes.io/docs/reference/access-authn-authz/authorization/#authorization-modules)。目前,RKE 只支持[RBAC 模块](https://kubernetes.io/docs/reference/access-authn-authz/rbac/)。 20 | 21 | 默认情况下,RKE 会启用 RBAC 授权策略。如果你想关闭 RBAC 授权策略,请在`cluster.yml`中将设置授权模式为`none`。虽然 RKE 支持手动关闭 RBAC 授权策略,但是关闭 RBAC 授权策略会有一定的风险,我们不建议用户关闭 RBAC 授权策略。 22 | 23 | ```yaml 24 | authorization: 25 | # Use `mode: none` to disable authorization 26 | mode: rbac 27 | ``` 28 | -------------------------------------------------------------------------------- /docs/rke/config-options/cloud-providers/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 云服务提供商 3 | description: RKE 支持为 Kubernetes 集群设置特定的云服务提供商。这些云服务提供商有特定的配置参数。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - RKE 15 | - 配置选项 16 | - 云服务提供商 17 | --- 18 | 19 | RKE 支持为 Kubernetes 集群设置特定的[云服务提供商](https://v1-17.docs.kubernetes.io/docs/concepts/cluster-administration/cloud-providers/)。这些云服务提供商有特定的配置参数。 20 | 21 | 要启用云服务提供商,必须在`cluster.yaml`中的`cloud_provider`参数中提供其名称以及任何所需配置选项,RKE 支持的云服务提供商如下: 22 | 23 | - [AWS](/docs/rke/config-options/cloud-providers/aws/_index) 24 | - [Azure](/docs/rke/config-options/cloud-providers/azure/_index) 25 | - [OpenStack](/docs/rke/config-options/cloud-providers/openstack/_index) 26 | - [vSphere](/docs/rke/config-options/cloud-providers/vsphere/_index) 27 | 28 | 除了上述云服务提供商之外,RKE 还支持[自定义云提供商](/docs/rke/config-options/cloud-providers/custom/_index)。 29 | -------------------------------------------------------------------------------- /docs/rke/troubleshooting/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 常见问题排查 3 | description: 本文讲述了 RKE 常见问题排查。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - RKE 15 | - 常见问题排查 16 | --- 17 | 18 | - [SSH 连接错误](/docs/rke/troubleshooting/ssh-connectivity-errors/_index) 19 | - [启动集群时报错](/docs/rke/troubleshooting/provisioning-errors/_index) 20 | -------------------------------------------------------------------------------- /docs/rke2/CNAME: -------------------------------------------------------------------------------- 1 | docs.rke2.io -------------------------------------------------------------------------------- /docs/rke2/architecture/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/docs/rke2/architecture/overview.png -------------------------------------------------------------------------------- /docs/rke2/assets/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/docs/rke2/assets/favicon-32x32.png -------------------------------------------------------------------------------- /docs/rke2/assets/fips_engagement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/docs/rke2/assets/fips_engagement.pdf -------------------------------------------------------------------------------- /docs/rke2/baseCommitid/_index.md: -------------------------------------------------------------------------------- 1 | rke2_commitid: 0ba127fd5a5f6c44b8100c479d1f69d56019a405 2 | docs_commitid: 0ba127fd5a5f6c44b8100c479d1f69d56019a405 3 | date: 2021-5-28 -------------------------------------------------------------------------------- /docs/rke2/install/windows_uninstall/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Windows 卸载 3 | description: 根据安装 RKE2 的安装方式不同,卸载过程也不同。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - RKE2 15 | - 卸载rke2 16 | - windows 卸载 17 | --- 18 | 19 | :::warning 注意: 20 | 卸载 RKE2 的 Windows Agent 会删除所有的节点数据。 21 | ::: 22 | 23 | 根据安装 RKE2 的方法不同,卸载过程也不同。 24 | 25 | ## Tarball 方法 26 | 27 | 要从你的系统中卸载通过 tarball 方法安装的 RKE2 Windows Agent,只需运行下面的命令。这将关闭所有 RKE2 的 Windows 进程,删除 RKE2 的 Windows 二进制文件,并清理 RKE2 使用的文件。 28 | 29 | ```powershell 30 | c:/usr/local/bin/rke2-uninstall.ps1 31 | ``` 32 | -------------------------------------------------------------------------------- /docs/rke2/security/about_hardened_images/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 关于加固镜像 3 | description: RKE2 加固后的镜像在构建时扫描漏洞,并增加了额外的安全保护措施以减少潜在的漏洞。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - RKE2 15 | - 关于加固镜像 16 | --- 17 | 18 | RKE2 加固后的镜像在构建时扫描漏洞,并增加了额外的安全保护措施以减少潜在的漏洞。 19 | 20 | - 镜像不是简单地从上游构建的镜像。镜像是在一个加固的最小基础镜像上从源头构建的,目前是 Red Hat 通用基础镜像(UBI)。 21 | - 任何用 Go 编写的二进制文件都是使用符合 FIPS 140-2 标准的编译过程。关于这个编译器的更多信息,请参考[这里](/docs/rke2/security/fips_support/_index#使用-fips-兼容的-go-编译器)。 22 | 23 | 你可以通过镜像名称知道一个镜像是否已经过上述加固处理。RKE2 在每个版本中都会公布镜像列表。请参考[这里](https://github.com/rancher/rke2/releases/download/v1.22.3-rc1%2Brke2r1/rke2-images-all.linux-amd64.txt)公布的镜像列表的例子。 24 | 25 | **注意:** 26 | 目前,RKE2 加固后的镜像是多架构的。只有 Linux 的 AMD64 架构是符合 FIPS 标准的。Windows 和 s390x 不符合 FIPS 标准。 27 | -------------------------------------------------------------------------------- /docs/rke2/upgrade/upgrade/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 升级RKE2集群 3 | description: 本节介绍了如何升级你的rke2集群。 4 | keywords: 5 | - rancher 6 | - rancher中文 7 | - rancher中文文档 8 | - rancher官网 9 | - rancher文档 10 | - Rancher 11 | - rancher 中文 12 | - rancher 中文文档 13 | - rancher cn 14 | - RKE2 15 | - 升级RKE2集群 16 | --- 17 | 18 | 19 | 本节介绍了如何升级你的rke2集群。 20 | 21 | [基础升级](/docs/rke2/upgrade/basic_upgrade/_index)描述了手动升级集群的几种方式。它也可以作为通过第三方基础设施即代码工具升级,如[Terraform](https://www.terraform.io/)。 22 | 23 | [自动升级](/docs/rke2/upgrade/automated_upgrade/_index)描述了如何使用Rancher的[system-upgrade-controller](https://github.com/rancher/system-upgrade-controller)执行Kubernetes原生的自动升级。 24 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "docs-rancher2", 3 | "version": "v1.22.4", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "prettier": { 8 | "version": "2.2.1", 9 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz", 10 | "integrity": "sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==", 11 | "dev": true 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/theme/PortsCustomNodes/styles.module.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2017-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | .highlight { 9 | background-color: #3497da; 10 | color: #ffffff; 11 | } 12 | 13 | .solid { 14 | border-style: solid; 15 | } 16 | -------------------------------------------------------------------------------- /src/theme/PortsHosted/styles.module.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2017-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | .highlight { 9 | background-color: #3497da; 10 | color: #ffffff; 11 | } 12 | 13 | .solid { 14 | border-style: solid; 15 | } 16 | -------------------------------------------------------------------------------- /src/theme/PortsIaasNodes/styles.module.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2017-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | .highlight { 9 | background-color: #3497da; 10 | color: #ffffff; 11 | } 12 | 13 | .solid { 14 | border-style: solid; 15 | } 16 | -------------------------------------------------------------------------------- /src/theme/PortsImported/styles.module.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2017-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | .highlight { 9 | background-color: #3497da; 10 | color: #ffffff; 11 | } 12 | 13 | .solid { 14 | border-style: solid; 15 | } 16 | -------------------------------------------------------------------------------- /static/img/contributing/ewm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/contributing/ewm.jpg -------------------------------------------------------------------------------- /static/img/contributing/organization.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/contributing/organization.jpg -------------------------------------------------------------------------------- /static/img/contributing/organization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/contributing/organization.png -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/harvester/access-to-vm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/harvester/access-to-vm.png -------------------------------------------------------------------------------- /static/img/harvester/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/harvester/architecture.png -------------------------------------------------------------------------------- /static/img/harvester/authentication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/harvester/authentication.png -------------------------------------------------------------------------------- /static/img/harvester/create-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/harvester/create-network.png -------------------------------------------------------------------------------- /static/img/harvester/create-vm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/harvester/create-vm.png -------------------------------------------------------------------------------- /static/img/harvester/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/harvester/do.png -------------------------------------------------------------------------------- /static/img/harvester/enable-vlan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/harvester/enable-vlan.png -------------------------------------------------------------------------------- /static/img/harvester/first-log-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/harvester/first-log-in.png -------------------------------------------------------------------------------- /static/img/harvester/harvester-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/harvester/harvester-app.png -------------------------------------------------------------------------------- /static/img/harvester/harvester-catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/harvester/harvester-catalog.png -------------------------------------------------------------------------------- /static/img/harvester/harvester-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/harvester/harvester-ui.png -------------------------------------------------------------------------------- /static/img/harvester/iso-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/harvester/iso-install.png -------------------------------------------------------------------------------- /static/img/harvester/iso-installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/harvester/iso-installed.png -------------------------------------------------------------------------------- /static/img/harvester/iso-mode-upgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/harvester/iso-mode-upgrade.png -------------------------------------------------------------------------------- /static/img/harvester/iso-nic-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/harvester/iso-nic-config.png -------------------------------------------------------------------------------- /static/img/harvester/node-network-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/harvester/node-network-configuration.png -------------------------------------------------------------------------------- /static/img/harvester/upgrade-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/harvester/upgrade-ui.png -------------------------------------------------------------------------------- /static/img/harvester/upload-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/harvester/upload-image.png -------------------------------------------------------------------------------- /static/img/harvester/vlan-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/harvester/vlan-case.png -------------------------------------------------------------------------------- /static/img/harvester/vm-network-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/harvester/vm-network-configuration.png -------------------------------------------------------------------------------- /static/img/k3s/access-kube-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/access-kube-explorer.png -------------------------------------------------------------------------------- /static/img/k3s/autok3s-demo-min.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/autok3s-demo-min.gif -------------------------------------------------------------------------------- /static/img/k3s/autok3s-v0.4.7-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/autok3s-v0.4.7-demo.gif -------------------------------------------------------------------------------- /static/img/k3s/cluster-detail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/cluster-detail.jpg -------------------------------------------------------------------------------- /static/img/k3s/cluster-templates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/cluster-templates.png -------------------------------------------------------------------------------- /static/img/k3s/create-k3d-cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/create-k3d-cluster.png -------------------------------------------------------------------------------- /static/img/k3s/custom-create-cluster-additional-alibaba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/custom-create-cluster-additional-alibaba.png -------------------------------------------------------------------------------- /static/img/k3s/custom-create-cluster-additional-google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/custom-create-cluster-additional-google.png -------------------------------------------------------------------------------- /static/img/k3s/custom-create-cluster-additional-harvester.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/custom-create-cluster-additional-harvester.png -------------------------------------------------------------------------------- /static/img/k3s/custom-create-cluster-additional-native.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/custom-create-cluster-additional-native.png -------------------------------------------------------------------------------- /static/img/k3s/custom-create-cluster-additional-tencent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/custom-create-cluster-additional-tencent.png -------------------------------------------------------------------------------- /static/img/k3s/custom-create-cluster-additional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/custom-create-cluster-additional.png -------------------------------------------------------------------------------- /static/img/k3s/custom-create-cluster-credential-alibaba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/custom-create-cluster-credential-alibaba.png -------------------------------------------------------------------------------- /static/img/k3s/custom-create-cluster-credential-google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/custom-create-cluster-credential-google.png -------------------------------------------------------------------------------- /static/img/k3s/custom-create-cluster-credential-tencent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/custom-create-cluster-credential-tencent.png -------------------------------------------------------------------------------- /static/img/k3s/custom-create-cluster-credential.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/custom-create-cluster-credential.png -------------------------------------------------------------------------------- /static/img/k3s/custom-create-cluster-instance-google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/custom-create-cluster-instance-google.png -------------------------------------------------------------------------------- /static/img/k3s/custom-create-cluster-instance-harvester.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/custom-create-cluster-instance-harvester.png -------------------------------------------------------------------------------- /static/img/k3s/custom-create-cluster-instance-native.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/custom-create-cluster-instance-native.png -------------------------------------------------------------------------------- /static/img/k3s/custom-create-cluster-instance-tencent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/custom-create-cluster-instance-tencent.png -------------------------------------------------------------------------------- /static/img/k3s/custom-create-cluster-instance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/custom-create-cluster-instance.png -------------------------------------------------------------------------------- /static/img/k3s/custom-create-cluster-k3s-native.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/custom-create-cluster-k3s-native.png -------------------------------------------------------------------------------- /static/img/k3s/custom-create-cluster-k3s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/custom-create-cluster-k3s.png -------------------------------------------------------------------------------- /static/img/k3s/custom-create-cluster-option-alibaba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/custom-create-cluster-option-alibaba.png -------------------------------------------------------------------------------- /static/img/k3s/disable-kube-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/disable-kube-explorer.png -------------------------------------------------------------------------------- /static/img/k3s/download-kubeconfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/download-kubeconfig.png -------------------------------------------------------------------------------- /static/img/k3s/enable-kube-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/enable-kube-explorer.png -------------------------------------------------------------------------------- /static/img/k3s/fill-form-with-templates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/fill-form-with-templates.png -------------------------------------------------------------------------------- /static/img/k3s/join-nodes-native.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/join-nodes-native.png -------------------------------------------------------------------------------- /static/img/k3s/join-nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/join-nodes.png -------------------------------------------------------------------------------- /static/img/k3s/k3s-architecture-ha-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/k3s-architecture-ha-server.png -------------------------------------------------------------------------------- /static/img/k3s/k3s-architecture-single-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/k3s-architecture-single-server.png -------------------------------------------------------------------------------- /static/img/k3s/kube-explorer-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/kube-explorer-demo.gif -------------------------------------------------------------------------------- /static/img/k3s/kubectl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/kubectl.jpg -------------------------------------------------------------------------------- /static/img/k3s/launch-kube-explorer-native.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/launch-kube-explorer-native.png -------------------------------------------------------------------------------- /static/img/k3s/launch-kube-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/launch-kube-explorer.png -------------------------------------------------------------------------------- /static/img/k3s/launch-kubectl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/launch-kubectl.png -------------------------------------------------------------------------------- /static/img/k3s/node-ssh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/node-ssh.jpg -------------------------------------------------------------------------------- /static/img/k3s/quick-start-alibaba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/quick-start-alibaba.png -------------------------------------------------------------------------------- /static/img/k3s/quick-start-google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/quick-start-google.png -------------------------------------------------------------------------------- /static/img/k3s/quick-start-harvester.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/quick-start-harvester.png -------------------------------------------------------------------------------- /static/img/k3s/quick-start-k3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/quick-start-k3d.png -------------------------------------------------------------------------------- /static/img/k3s/quick-start-native.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/quick-start-native.png -------------------------------------------------------------------------------- /static/img/k3s/quick-start-tencent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/quick-start-tencent.png -------------------------------------------------------------------------------- /static/img/k3s/quick-start-with-default-templates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/quick-start-with-default-templates.png -------------------------------------------------------------------------------- /static/img/k3s/quick-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/quick-start.png -------------------------------------------------------------------------------- /static/img/k3s/set-default-templates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/set-default-templates.png -------------------------------------------------------------------------------- /static/img/k3s/ssh-k3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/ssh-k3d.png -------------------------------------------------------------------------------- /static/img/k3s/ssh-node-native.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/ssh-node-native.png -------------------------------------------------------------------------------- /static/img/k3s/ssh-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/ssh-node.png -------------------------------------------------------------------------------- /static/img/k3s/upgrade-cluster-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/upgrade-cluster-result.png -------------------------------------------------------------------------------- /static/img/k3s/upgrade-cluster-to-specified-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/upgrade-cluster-to-specified-version.png -------------------------------------------------------------------------------- /static/img/k3s/upgrade-cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/k3s/upgrade-cluster.png -------------------------------------------------------------------------------- /static/img/octopus/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/octopus/architecture.png -------------------------------------------------------------------------------- /static/img/octopus/edge-ui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/octopus/edge-ui.jpg -------------------------------------------------------------------------------- /static/img/octopus/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/octopus/favicon.ico -------------------------------------------------------------------------------- /static/img/octopus/landing-img-adaptors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/octopus/landing-img-adaptors.png -------------------------------------------------------------------------------- /static/img/octopus/landing-img-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/octopus/landing-img-arch.png -------------------------------------------------------------------------------- /static/img/octopus/landing-img-edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/octopus/landing-img-edge.png -------------------------------------------------------------------------------- /static/img/octopus/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/octopus/logo.png -------------------------------------------------------------------------------- /static/img/octopus/monitoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/octopus/monitoring.png -------------------------------------------------------------------------------- /static/img/rancher/F5-7-layer-loadbalancer/SSL-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-7-layer-loadbalancer/SSL-1.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-7-layer-loadbalancer/SSL-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-7-layer-loadbalancer/SSL-2.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-7-layer-loadbalancer/SSL-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-7-layer-loadbalancer/SSL-3.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-7-layer-loadbalancer/Virtual-Server-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-7-layer-loadbalancer/Virtual-Server-1.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-7-layer-loadbalancer/Virtual-Server-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-7-layer-loadbalancer/Virtual-Server-2.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-7-layer-loadbalancer/Virtual-Server-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-7-layer-loadbalancer/Virtual-Server-3.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-7-layer-loadbalancer/Virtual-Server-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-7-layer-loadbalancer/Virtual-Server-4.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-7-layer-loadbalancer/Virtual-Server-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-7-layer-loadbalancer/Virtual-Server-5.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-7-layer-loadbalancer/add-node-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-7-layer-loadbalancer/add-node-1.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-7-layer-loadbalancer/add-node-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-7-layer-loadbalancer/add-node-2.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-7-layer-loadbalancer/add-pool-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-7-layer-loadbalancer/add-pool-1.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-7-layer-loadbalancer/add-pool-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-7-layer-loadbalancer/add-pool-2.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-7-layer-loadbalancer/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-7-layer-loadbalancer/architecture.png -------------------------------------------------------------------------------- /static/img/rancher/F5-7-layer-loadbalancer/cert-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-7-layer-loadbalancer/cert-1.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-7-layer-loadbalancer/cert-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-7-layer-loadbalancer/cert-2.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-7-layer-loadbalancer/cert-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-7-layer-loadbalancer/cert-3.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-7-layer-loadbalancer/cert-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-7-layer-loadbalancer/cert-4.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-7-layer-loadbalancer/health-check-config.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-7-layer-loadbalancer/health-check-config.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-7-layer-loadbalancer/irule-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-7-layer-loadbalancer/irule-1.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-7-layer-loadbalancer/irule-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-7-layer-loadbalancer/irule-2.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-WAF/F5-conditions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-WAF/F5-conditions.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-WAF/SSL-module-topology.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-WAF/SSL-module-topology.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-WAF/SSLO-configuration-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-WAF/SSLO-configuration-1.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-WAF/SSLO-configuration-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-WAF/SSLO-configuration-2.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-WAF/SSLO-configuration-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-WAF/SSLO-configuration-3.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-WAF/SSLO-module.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-WAF/SSLO-module.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-WAF/assert-cookie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-WAF/assert-cookie.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-WAF/create-waf-strategy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-WAF/create-waf-strategy.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-WAF/external.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-WAF/external.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-WAF/learn-traffic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-WAF/learn-traffic.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-WAF/redirect-traffic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-WAF/redirect-traffic.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-WAF/security-strategy-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-WAF/security-strategy-1.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-WAF/security-strategy-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-WAF/security-strategy-2.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-WAF/service-chain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-WAF/service-chain.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-WAF/start-asm-module.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-WAF/start-asm-module.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-WAF/submit-deployment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-WAF/submit-deployment.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-WAF/validate-access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-WAF/validate-access.png -------------------------------------------------------------------------------- /static/img/rancher/F5-WAF/virtual-server-binding-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-WAF/virtual-server-binding-1.png -------------------------------------------------------------------------------- /static/img/rancher/F5-WAF/virtual-server-binding.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-WAF/virtual-server-binding.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-WAF/virtual-server.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-WAF/virtual-server.jpg -------------------------------------------------------------------------------- /static/img/rancher/F5-WAF/waf-strategy-template.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/F5-WAF/waf-strategy-template.jpg -------------------------------------------------------------------------------- /static/img/rancher/Google-Credentials-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/Google-Credentials-tab.png -------------------------------------------------------------------------------- /static/img/rancher/Google-Enable-APIs-Screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/Google-Enable-APIs-Screen.png -------------------------------------------------------------------------------- /static/img/rancher/Google-Enable-Admin-APIs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/Google-Enable-Admin-APIs.png -------------------------------------------------------------------------------- /static/img/rancher/Google-OAuth-consent-screen-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/Google-OAuth-consent-screen-tab.png -------------------------------------------------------------------------------- /static/img/rancher/Google-Select-UniqueID-column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/Google-Select-UniqueID-column.png -------------------------------------------------------------------------------- /static/img/rancher/Google-svc-acc-step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/Google-svc-acc-step1.png -------------------------------------------------------------------------------- /static/img/rancher/Google-svc-acc-step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/Google-svc-acc-step2.png -------------------------------------------------------------------------------- /static/img/rancher/Google-svc-acc-step3-key-creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/Google-svc-acc-step3-key-creation.png -------------------------------------------------------------------------------- /static/img/rancher/add-custom-metrics.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/add-custom-metrics.gif -------------------------------------------------------------------------------- /static/img/rancher/add-env-var.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/add-env-var.png -------------------------------------------------------------------------------- /static/img/rancher/add-ingress-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/add-ingress-form.png -------------------------------------------------------------------------------- /static/img/rancher/add-ingress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/add-ingress.gif -------------------------------------------------------------------------------- /static/img/rancher/add-node-label.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/add-node-label.gif -------------------------------------------------------------------------------- /static/img/rancher/add-persistent-volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/add-persistent-volume.png -------------------------------------------------------------------------------- /static/img/rancher/add-pod-label.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/add-pod-label.gif -------------------------------------------------------------------------------- /static/img/rancher/add-record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/add-record.png -------------------------------------------------------------------------------- /static/img/rancher/adfs/adfs-add-rpt-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/adfs/adfs-add-rpt-1.png -------------------------------------------------------------------------------- /static/img/rancher/adfs/adfs-add-rpt-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/adfs/adfs-add-rpt-10.png -------------------------------------------------------------------------------- /static/img/rancher/adfs/adfs-add-rpt-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/adfs/adfs-add-rpt-11.png -------------------------------------------------------------------------------- /static/img/rancher/adfs/adfs-add-rpt-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/adfs/adfs-add-rpt-2.png -------------------------------------------------------------------------------- /static/img/rancher/adfs/adfs-add-rpt-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/adfs/adfs-add-rpt-3.png -------------------------------------------------------------------------------- /static/img/rancher/adfs/adfs-add-rpt-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/adfs/adfs-add-rpt-4.png -------------------------------------------------------------------------------- /static/img/rancher/adfs/adfs-add-rpt-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/adfs/adfs-add-rpt-5.png -------------------------------------------------------------------------------- /static/img/rancher/adfs/adfs-add-rpt-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/adfs/adfs-add-rpt-6.png -------------------------------------------------------------------------------- /static/img/rancher/adfs/adfs-add-rpt-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/adfs/adfs-add-rpt-7.png -------------------------------------------------------------------------------- /static/img/rancher/adfs/adfs-add-rpt-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/adfs/adfs-add-rpt-8.png -------------------------------------------------------------------------------- /static/img/rancher/adfs/adfs-add-rpt-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/adfs/adfs-add-rpt-9.png -------------------------------------------------------------------------------- /static/img/rancher/adfs/adfs-add-tcr-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/adfs/adfs-add-tcr-1.png -------------------------------------------------------------------------------- /static/img/rancher/adfs/adfs-add-tcr-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/adfs/adfs-add-tcr-2.png -------------------------------------------------------------------------------- /static/img/rancher/adfs/adfs-edit-cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/adfs/adfs-edit-cr.png -------------------------------------------------------------------------------- /static/img/rancher/adfs/adfs-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/adfs/adfs-overview.png -------------------------------------------------------------------------------- /static/img/rancher/airgap/edit-system-default-registry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/airgap/edit-system-default-registry.png -------------------------------------------------------------------------------- /static/img/rancher/airgap/enter-system-default-registry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/airgap/enter-system-default-registry.png -------------------------------------------------------------------------------- /static/img/rancher/airgap/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/airgap/settings.png -------------------------------------------------------------------------------- /static/img/rancher/airgap/system-charts-setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/airgap/system-charts-setting.png -------------------------------------------------------------------------------- /static/img/rancher/airgap/system-charts-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/airgap/system-charts-update.png -------------------------------------------------------------------------------- /static/img/rancher/alert_2.4_to_2.5_source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/alert_2.4_to_2.5_source.png -------------------------------------------------------------------------------- /static/img/rancher/alert_2.4_to_2.5_target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/alert_2.4_to_2.5_target.png -------------------------------------------------------------------------------- /static/img/rancher/alertmanager-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/alertmanager-ui.png -------------------------------------------------------------------------------- /static/img/rancher/app-readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/app-readme.png -------------------------------------------------------------------------------- /static/img/rancher/audit_logs_gui/context_local_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/audit_logs_gui/context_local_system.png -------------------------------------------------------------------------------- /static/img/rancher/audit_logs_gui/rancher_audit_log_container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/audit_logs_gui/rancher_audit_log_container.png -------------------------------------------------------------------------------- /static/img/rancher/audit_logs_gui/rancher_workload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/audit_logs_gui/rancher_workload.png -------------------------------------------------------------------------------- /static/img/rancher/audit_logs_gui/view_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/audit_logs_gui/view_logs.png -------------------------------------------------------------------------------- /static/img/rancher/backup-container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/backup-container.png -------------------------------------------------------------------------------- /static/img/rancher/backup_restore/backup/backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/backup_restore/backup/backup.png -------------------------------------------------------------------------------- /static/img/rancher/backup_restore/backup/encryption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/backup_restore/backup/encryption.png -------------------------------------------------------------------------------- /static/img/rancher/backup_restore/backup/schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/backup_restore/backup/schedule.png -------------------------------------------------------------------------------- /static/img/rancher/backup_restore/backup/storageLocation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/backup_restore/backup/storageLocation.png -------------------------------------------------------------------------------- /static/img/rancher/backup_restore/restore/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/backup_restore/restore/default.png -------------------------------------------------------------------------------- /static/img/rancher/backup_restore/restore/encryption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/backup_restore/restore/encryption.png -------------------------------------------------------------------------------- /static/img/rancher/backup_restore/restore/existing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/backup_restore/restore/existing.png -------------------------------------------------------------------------------- /static/img/rancher/backup_restore/restore/restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/backup_restore/restore/restore.png -------------------------------------------------------------------------------- /static/img/rancher/backup_restore/restore/s3store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/backup_restore/restore/s3store.png -------------------------------------------------------------------------------- /static/img/rancher/banzai-cloud-logging-operator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/banzai-cloud-logging-operator.png -------------------------------------------------------------------------------- /static/img/rancher/bpg/hub-and-spoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/bpg/hub-and-spoke.png -------------------------------------------------------------------------------- /static/img/rancher/bpg/regional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/bpg/regional.png -------------------------------------------------------------------------------- /static/img/rancher/bulk-key-values.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/bulk-key-values.gif -------------------------------------------------------------------------------- /static/img/rancher/calico-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/calico-logo.png -------------------------------------------------------------------------------- /static/img/rancher/canal-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/canal-diagram.png -------------------------------------------------------------------------------- /static/img/rancher/canal-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/canal-logo.png -------------------------------------------------------------------------------- /static/img/rancher/choose-release-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/choose-release-version.png -------------------------------------------------------------------------------- /static/img/rancher/click-endpoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/click-endpoints.png -------------------------------------------------------------------------------- /static/img/rancher/click-register-new-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/click-register-new-app.png -------------------------------------------------------------------------------- /static/img/rancher/cloud-provider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/cloud-provider.png -------------------------------------------------------------------------------- /static/img/rancher/cluster-compute-resources-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/cluster-compute-resources-dashboard.png -------------------------------------------------------------------------------- /static/img/rancher/cluster-options-yaml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/cluster-options-yaml.png -------------------------------------------------------------------------------- /static/img/rancher/cluster-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/cluster-options.png -------------------------------------------------------------------------------- /static/img/rancher/cni-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/cni-logo.png -------------------------------------------------------------------------------- /static/img/rancher/container-port-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/container-port-field.png -------------------------------------------------------------------------------- /static/img/rancher/create-backup-tarball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/create-backup-tarball.png -------------------------------------------------------------------------------- /static/img/rancher/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/dashboard.png -------------------------------------------------------------------------------- /static/img/rancher/deploy-service.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/deploy-service.gif -------------------------------------------------------------------------------- /static/img/rancher/deploy-workload-hostport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/deploy-workload-hostport.png -------------------------------------------------------------------------------- /static/img/rancher/deploy-workload-load-balancer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/deploy-workload-load-balancer.png -------------------------------------------------------------------------------- /static/img/rancher/deploy-workload-nodeport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/deploy-workload-nodeport.png -------------------------------------------------------------------------------- /static/img/rancher/dir-backup-tarball-clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/dir-backup-tarball-clear.png -------------------------------------------------------------------------------- /static/img/rancher/dir-backup-tarball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/dir-backup-tarball.png -------------------------------------------------------------------------------- /static/img/rancher/docker-container-ps-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/docker-container-ps-output.png -------------------------------------------------------------------------------- /static/img/rancher/downloadsshkeys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/downloadsshkeys.png -------------------------------------------------------------------------------- /static/img/rancher/edit-cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/edit-cluster.png -------------------------------------------------------------------------------- /static/img/rancher/edit-migration-workload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/edit-migration-workload.gif -------------------------------------------------------------------------------- /static/img/rancher/enable-cluster-monitoring.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/enable-cluster-monitoring.gif -------------------------------------------------------------------------------- /static/img/rancher/enable-project-monitoring.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/enable-project-monitoring.gif -------------------------------------------------------------------------------- /static/img/rancher/encapsulated-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/encapsulated-network.png -------------------------------------------------------------------------------- /static/img/rancher/enter-azure-reply-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/enter-azure-reply-url.png -------------------------------------------------------------------------------- /static/img/rancher/expansion/007S8ZIlly1gejvtmh6w3j31sx0u0q3j.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/expansion/007S8ZIlly1gejvtmh6w3j31sx0u0q3j.jpg -------------------------------------------------------------------------------- /static/img/rancher/expansion/007S8ZIlly1gejx15bo0yj313f0u00y5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/expansion/007S8ZIlly1gejx15bo0yj313f0u00y5.jpg -------------------------------------------------------------------------------- /static/img/rancher/expansion/007S8ZIlly1gek021xwzij31tq0k8gm1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/expansion/007S8ZIlly1gek021xwzij31tq0k8gm1.jpg -------------------------------------------------------------------------------- /static/img/rancher/expansion/007S8ZIlly1get57kqscwj31nk0jo0t6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/expansion/007S8ZIlly1get57kqscwj31nk0jo0t6.jpg -------------------------------------------------------------------------------- /static/img/rancher/flannel-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/flannel-diagram.png -------------------------------------------------------------------------------- /static/img/rancher/flannel-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/flannel-logo.png -------------------------------------------------------------------------------- /static/img/rancher/fleet-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/fleet-architecture.png -------------------------------------------------------------------------------- /static/img/rancher/global-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/global-menu.png -------------------------------------------------------------------------------- /static/img/rancher/globalpermissionfinal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/globalpermissionfinal.png -------------------------------------------------------------------------------- /static/img/rancher/globalpermissionrole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/globalpermissionrole.png -------------------------------------------------------------------------------- /static/img/rancher/globalpermissionuser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/globalpermissionuser.png -------------------------------------------------------------------------------- /static/img/rancher/grafana-default-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/grafana-default-dashboard.png -------------------------------------------------------------------------------- /static/img/rancher/ha/nlb/add-targets-targetgroup-443.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/ha/nlb/add-targets-targetgroup-443.png -------------------------------------------------------------------------------- /static/img/rancher/ha/nlb/added-targets-targetgroup-443.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/ha/nlb/added-targets-targetgroup-443.png -------------------------------------------------------------------------------- /static/img/rancher/ha/nlb/create-targetgroup-443-advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/ha/nlb/create-targetgroup-443-advanced.png -------------------------------------------------------------------------------- /static/img/rancher/ha/nlb/create-targetgroup-443.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/ha/nlb/create-targetgroup-443.png -------------------------------------------------------------------------------- /static/img/rancher/ha/nlb/create-targetgroup-80-advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/ha/nlb/create-targetgroup-80-advanced.png -------------------------------------------------------------------------------- /static/img/rancher/ha/nlb/create-targetgroup-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/ha/nlb/create-targetgroup-80.png -------------------------------------------------------------------------------- /static/img/rancher/ha/nlb/ec2-loadbalancing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/ha/nlb/ec2-loadbalancing.png -------------------------------------------------------------------------------- /static/img/rancher/ha/nlb/edit-targetgroup-443.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/ha/nlb/edit-targetgroup-443.png -------------------------------------------------------------------------------- /static/img/rancher/health-check-section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/health-check-section.png -------------------------------------------------------------------------------- /static/img/rancher/healthcheck-cmd-exec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/healthcheck-cmd-exec.png -------------------------------------------------------------------------------- /static/img/rancher/horizontal-pod-autoscaler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/horizontal-pod-autoscaler.jpg -------------------------------------------------------------------------------- /static/img/rancher/iaas-scale-nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/iaas-scale-nodes.png -------------------------------------------------------------------------------- /static/img/rancher/import-yaml-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/import-yaml-error.png -------------------------------------------------------------------------------- /static/img/rancher/imported-workloads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/imported-workloads.png -------------------------------------------------------------------------------- /static/img/rancher/k3s-architecture-ha-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/k3s-architecture-ha-server.png -------------------------------------------------------------------------------- /static/img/rancher/k3s-architecture-single-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/k3s-architecture-single-server.png -------------------------------------------------------------------------------- /static/img/rancher/keycloak-saml-client-builtin-mappers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/keycloak-saml-client-builtin-mappers.png -------------------------------------------------------------------------------- /static/img/rancher/keycloak-saml-client-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/keycloak-saml-client-configuration.png -------------------------------------------------------------------------------- /static/img/rancher/keycloak-saml-client-group-mapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/keycloak-saml-client-group-mapper.png -------------------------------------------------------------------------------- /static/img/rancher/layer-4-lb-config-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/layer-4-lb-config-map.png -------------------------------------------------------------------------------- /static/img/rancher/ldapsearch-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/ldapsearch-group.png -------------------------------------------------------------------------------- /static/img/rancher/ldapsearch-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/ldapsearch-user.png -------------------------------------------------------------------------------- /static/img/rancher/linked-service-workload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/linked-service-workload.png -------------------------------------------------------------------------------- /static/img/rancher/listening-port-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/listening-port-field.png -------------------------------------------------------------------------------- /static/img/rancher/liveness-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/liveness-check.png -------------------------------------------------------------------------------- /static/img/rancher/load-balancer-links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/load-balancer-links.png -------------------------------------------------------------------------------- /static/img/rancher/load-balancer-ssl-certs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/load-balancer-ssl-certs.png -------------------------------------------------------------------------------- /static/img/rancher/longhorn-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/longhorn-screenshot.png -------------------------------------------------------------------------------- /static/img/rancher/migrate-schedule-workloads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/migrate-schedule-workloads.png -------------------------------------------------------------------------------- /static/img/rancher/monitoring/migration/alert_2.4_to_2.5_source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/monitoring/migration/alert_2.4_to_2.5_source.png -------------------------------------------------------------------------------- /static/img/rancher/monitoring/migration/alert_2.4_to_2.5_target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/monitoring/migration/alert_2.4_to_2.5_target.png -------------------------------------------------------------------------------- /static/img/rancher/move-namespaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/move-namespaces.png -------------------------------------------------------------------------------- /static/img/rancher/new-app-registration-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/new-app-registration-1.png -------------------------------------------------------------------------------- /static/img/rancher/new-app-registration-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/new-app-registration-2.png -------------------------------------------------------------------------------- /static/img/rancher/new-app-registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/new-app-registration.png -------------------------------------------------------------------------------- /static/img/rancher/nginx-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/nginx-config.png -------------------------------------------------------------------------------- /static/img/rancher/no-ingress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/no-ingress.png -------------------------------------------------------------------------------- /static/img/rancher/node-drain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/node-drain.png -------------------------------------------------------------------------------- /static/img/rancher/node-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/node-edit.png -------------------------------------------------------------------------------- /static/img/rancher/node-schedule-advanced-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/node-schedule-advanced-options.png -------------------------------------------------------------------------------- /static/img/rancher/node-schedule-antiaffinity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/node-schedule-antiaffinity.png -------------------------------------------------------------------------------- /static/img/rancher/node-scheduling-affinity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/node-scheduling-affinity.png -------------------------------------------------------------------------------- /static/img/rancher/node-scheduling-labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/node-scheduling-labels.png -------------------------------------------------------------------------------- /static/img/rancher/node-scheduling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/node-scheduling.png -------------------------------------------------------------------------------- /static/img/rancher/nodeport-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/nodeport-dropdown.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20180805213034249.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20180805213034249.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20180805213123781.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20180805213123781.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20180910172158993.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20180910172158993.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20181101183954443.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20181101183954443.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190309173154246.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190309173154246.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190314173250612.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190314173250612.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190314173915552.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190314173915552.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190314174424562.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190314174424562.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190314174524973.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190314174524973.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190314174834334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190314174834334.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190314175308608.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190314175308608.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190314181124857.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190314181124857.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190314182034766.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190314182034766.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190314182530479.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190314182530479.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190314205425237.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190314205425237.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190314212013510.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190314212013510.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190314212124745.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190314212124745.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190314212701691.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190314212701691.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190314213051682.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190314213051682.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190314213123621.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190314213123621.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190314213215303.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190314213215303.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190315232842668.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190315232842668.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190315233201822.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190315233201822.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190315233320815.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190315233320815.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190328180337080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190328180337080.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190328180442226.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190328180442226.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190328180455485.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190328180455485.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190423133555060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190423133555060.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190423133810076.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190423133810076.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190423135522178.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190423135522178.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190423135604503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190423135604503.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190514184126478.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190514184126478.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190514185026706.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190514185026706.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190514185322798.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190514185322798.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190615165436722.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190615165436722.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190615170819489.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190615170819489.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190923184019854.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190923184019854.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20190923184601819.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20190923184601819.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20191213210405727.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20191213210405727.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20191213212549253.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20191213212549253.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20191214193550681.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20191214193550681.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20191214193741315.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20191214193741315.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20191214194320570.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20191214194320570.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20200220190647637.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20200220190647637.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20200220190801613.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20200220190801613.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20200220190821898.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20200220190821898.png -------------------------------------------------------------------------------- /static/img/rancher/old-doc/image-20200220205103937.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/old-doc/image-20200220205103937.png -------------------------------------------------------------------------------- /static/img/rancher/one-six-schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/one-six-schedule.png -------------------------------------------------------------------------------- /static/img/rancher/open-rancher-app2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/open-rancher-app2.png -------------------------------------------------------------------------------- /static/img/rancher/output-dot-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/output-dot-text.png -------------------------------------------------------------------------------- /static/img/rancher/permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/permissions.png -------------------------------------------------------------------------------- /static/img/rancher/persistent-volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/persistent-volume.png -------------------------------------------------------------------------------- /static/img/rancher/placeholder-ref-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/placeholder-ref-2.png -------------------------------------------------------------------------------- /static/img/rancher/placeholder-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/placeholder-ref.png -------------------------------------------------------------------------------- /static/img/rancher/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/platform.png -------------------------------------------------------------------------------- /static/img/rancher/principal-ID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/principal-ID.png -------------------------------------------------------------------------------- /static/img/rancher/prometheus-graph-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/prometheus-graph-ui.png -------------------------------------------------------------------------------- /static/img/rancher/prometheus-rules-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/prometheus-rules-ui.png -------------------------------------------------------------------------------- /static/img/rancher/prometheus-targets-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/prometheus-targets-ui.png -------------------------------------------------------------------------------- /static/img/rancher/questions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/questions.png -------------------------------------------------------------------------------- /static/img/rancher/rancher-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/rancher-version.png -------------------------------------------------------------------------------- /static/img/rancher/rancher_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/rancher_overview.png -------------------------------------------------------------------------------- /static/img/rancher/rancher_overview_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/rancher_overview_2.png -------------------------------------------------------------------------------- /static/img/rancher/rancherroles1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/rancherroles1.png -------------------------------------------------------------------------------- /static/img/rancher/rancherroles2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/rancherroles2.png -------------------------------------------------------------------------------- /static/img/rancher/rancheruser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/rancheruser.png -------------------------------------------------------------------------------- /static/img/rancher/readiness-check-http.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/readiness-check-http.png -------------------------------------------------------------------------------- /static/img/rancher/readiness-check-tcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/readiness-check-tcp.png -------------------------------------------------------------------------------- /static/img/rancher/readiness-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/readiness-check.png -------------------------------------------------------------------------------- /static/img/rancher/resolve-affinity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/resolve-affinity.png -------------------------------------------------------------------------------- /static/img/rancher/resolve-global.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/resolve-global.png -------------------------------------------------------------------------------- /static/img/rancher/resolve-health-checks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/resolve-health-checks.png -------------------------------------------------------------------------------- /static/img/rancher/resolve-links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/resolve-links.png -------------------------------------------------------------------------------- /static/img/rancher/resolve-load-balancer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/resolve-load-balancer.png -------------------------------------------------------------------------------- /static/img/rancher/resolve-ports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/resolve-ports.png -------------------------------------------------------------------------------- /static/img/rancher/resolve-pull-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/resolve-pull-image.png -------------------------------------------------------------------------------- /static/img/rancher/resolve-scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/resolve-scale.png -------------------------------------------------------------------------------- /static/img/rancher/resource-constraint-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/resource-constraint-settings.png -------------------------------------------------------------------------------- /static/img/rancher/rke-etcd-backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/rke-etcd-backup.png -------------------------------------------------------------------------------- /static/img/rancher/schedule-specific-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/schedule-specific-node.png -------------------------------------------------------------------------------- /static/img/rancher/scheduled-nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/scheduled-nodes.png -------------------------------------------------------------------------------- /static/img/rancher/search-app-registrations2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/search-app-registrations2.png -------------------------------------------------------------------------------- /static/img/rancher/search-azure-ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/search-azure-ad.png -------------------------------------------------------------------------------- /static/img/rancher/search-enterprise-applications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/search-enterprise-applications.png -------------------------------------------------------------------------------- /static/img/rancher/select-client-secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/select-client-secret.png -------------------------------------------------------------------------------- /static/img/rancher/select-required-permissions-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/select-required-permissions-1.png -------------------------------------------------------------------------------- /static/img/rancher/select-required-permissions-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/select-required-permissions-2.png -------------------------------------------------------------------------------- /static/img/rancher/select-required-permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/select-required-permissions.png -------------------------------------------------------------------------------- /static/img/rancher/separate-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/separate-check.png -------------------------------------------------------------------------------- /static/img/rancher/set-hostport.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/set-hostport.gif -------------------------------------------------------------------------------- /static/img/rancher/set-nodeport.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/set-nodeport.gif -------------------------------------------------------------------------------- /static/img/rancher/sign-in-external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/sign-in-external.png -------------------------------------------------------------------------------- /static/img/rancher/sign-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/sign-in.png -------------------------------------------------------------------------------- /static/img/rancher/sign-out-local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/sign-out-local.png -------------------------------------------------------------------------------- /static/img/rancher/single-to-ha.assets/image-20191016142653127.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/single-to-ha.assets/image-20191016142653127.png -------------------------------------------------------------------------------- /static/img/rancher/single-to-ha.assets/image-20191016142719866.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/single-to-ha.assets/image-20191016142719866.png -------------------------------------------------------------------------------- /static/img/rancher/single-to-ha.assets/image-20191016142808830.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/single-to-ha.assets/image-20191016142808830.png -------------------------------------------------------------------------------- /static/img/rancher/single-to-ha.assets/image-20191016142850886.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/single-to-ha.assets/image-20191016142850886.png -------------------------------------------------------------------------------- /static/img/rancher/single-to-ha.assets/image-20191016143133778.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/single-to-ha.assets/image-20191016143133778.png -------------------------------------------------------------------------------- /static/img/rancher/single-to-ha.assets/image-20191016143513361.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/single-to-ha.assets/image-20191016143513361.png -------------------------------------------------------------------------------- /static/img/rancher/single-to-ha.assets/image-20191016143636998.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/single-to-ha.assets/image-20191016143636998.png -------------------------------------------------------------------------------- /static/img/rancher/single-to-ha.assets/image-20191016143950402.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/single-to-ha.assets/image-20191016143950402.png -------------------------------------------------------------------------------- /static/img/rancher/single-to-ha.assets/image-20191016144352807.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/single-to-ha.assets/image-20191016144352807.png -------------------------------------------------------------------------------- /static/img/rancher/single-to-ha.assets/image-20191016144702116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/single-to-ha.assets/image-20191016144702116.png -------------------------------------------------------------------------------- /static/img/rancher/single-to-ha.assets/image-20191016145903388.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/single-to-ha.assets/image-20191016145903388.png -------------------------------------------------------------------------------- /static/img/rancher/single-to-ha.assets/image-20191016150137910.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/single-to-ha.assets/image-20191016150137910.png -------------------------------------------------------------------------------- /static/img/rancher/single-to-ha.assets/image-20191016150556120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/single-to-ha.assets/image-20191016150556120.png -------------------------------------------------------------------------------- /static/img/rancher/single-to-ha.assets/image-20191016152133693.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/single-to-ha.assets/image-20191016152133693.png -------------------------------------------------------------------------------- /static/img/rancher/single-to-ha.assets/image-20191016165114635.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/single-to-ha.assets/image-20191016165114635.png -------------------------------------------------------------------------------- /static/img/rancher/single-to-ha.assets/image-20191016165143557.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/single-to-ha.assets/image-20191016165143557.png -------------------------------------------------------------------------------- /static/img/rancher/single-to-ha.assets/image-20191016170347456.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/single-to-ha.assets/image-20191016170347456.png -------------------------------------------------------------------------------- /static/img/rancher/single-to-ha.assets/image-20191016170849825.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/single-to-ha.assets/image-20191016170849825.png -------------------------------------------------------------------------------- /static/img/rancher/single-to-ha.assets/image-20191016185613510.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/single-to-ha.assets/image-20191016185613510.png -------------------------------------------------------------------------------- /static/img/rancher/single-to-ha.assets/image-20191016191846530.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/single-to-ha.assets/image-20191016191846530.png -------------------------------------------------------------------------------- /static/img/rancher/single-to-ha.assets/image-20191016195215819.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/single-to-ha.assets/image-20191016195215819.png -------------------------------------------------------------------------------- /static/img/rancher/single-to-ha.assets/image-20191016195309268.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/single-to-ha.assets/image-20191016195309268.png -------------------------------------------------------------------------------- /static/img/rancher/single-to-ha.assets/image-20191017182734715.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/single-to-ha.assets/image-20191017182734715.png -------------------------------------------------------------------------------- /static/img/rancher/splunk/splunk1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/splunk/splunk1.jpg -------------------------------------------------------------------------------- /static/img/rancher/splunk/splunk2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/splunk/splunk2.jpg -------------------------------------------------------------------------------- /static/img/rancher/splunk/splunk3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/splunk/splunk3.jpg -------------------------------------------------------------------------------- /static/img/rancher/splunk/splunk4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/splunk/splunk4.jpg -------------------------------------------------------------------------------- /static/img/rancher/splunk/splunk5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/splunk/splunk5.jpg -------------------------------------------------------------------------------- /static/img/rancher/stop-rancher-container.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/stop-rancher-container.gif -------------------------------------------------------------------------------- /static/img/rancher/storage-classes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/storage-classes.png -------------------------------------------------------------------------------- /static/img/rancher/unencapsulated-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/unencapsulated-network.png -------------------------------------------------------------------------------- /static/img/rancher/user-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/user-settings.png -------------------------------------------------------------------------------- /static/img/rancher/users-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/users-page.png -------------------------------------------------------------------------------- /static/img/rancher/view-edit-yaml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/view-edit-yaml.png -------------------------------------------------------------------------------- /static/img/rancher/vsphere-cluster-create-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/vsphere-cluster-create-1.png -------------------------------------------------------------------------------- /static/img/rancher/vsphere-node-driver-cloudprovider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/vsphere-node-driver-cloudprovider.png -------------------------------------------------------------------------------- /static/img/rancher/vsphere-node-template-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/vsphere-node-template-1.png -------------------------------------------------------------------------------- /static/img/rancher/vsphere-node-template-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/vsphere-node-template-2.png -------------------------------------------------------------------------------- /static/img/rancher/vsphere-storage-class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/vsphere-storage-class.png -------------------------------------------------------------------------------- /static/img/rancher/weave-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/weave-logo.png -------------------------------------------------------------------------------- /static/img/rancher/workload-add-volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/workload-add-volume.png -------------------------------------------------------------------------------- /static/img/rancher/workload-persistent-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/workload-persistent-data.png -------------------------------------------------------------------------------- /static/img/rancher/workload-scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/workload-scale.png -------------------------------------------------------------------------------- /static/img/rancher/workload-type-option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/workload-type-option.png -------------------------------------------------------------------------------- /static/img/rancher/workload-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher/workload-type.png -------------------------------------------------------------------------------- /static/img/rancher1/faqs/custom_lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher1/faqs/custom_lb.png -------------------------------------------------------------------------------- /static/img/rancher1/faqs/jd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher1/faqs/jd.jpg -------------------------------------------------------------------------------- /static/img/rancher1/faqs/proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher1/faqs/proxy.png -------------------------------------------------------------------------------- /static/img/rancher1/server.assets/image-201803291746238.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher1/server.assets/image-201803291746238.png -------------------------------------------------------------------------------- /static/img/rancher1/server.assets/image-201803291747058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher1/server.assets/image-201803291747058.png -------------------------------------------------------------------------------- /static/img/rancher1/server.assets/image-201803291747230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher1/server.assets/image-201803291747230.png -------------------------------------------------------------------------------- /static/img/rancher1/server.assets/image-201803291748154.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher1/server.assets/image-201803291748154.png -------------------------------------------------------------------------------- /static/img/rancher1/server.assets/image-201803291751248.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher1/server.assets/image-201803291751248.png -------------------------------------------------------------------------------- /static/img/rancher1/server.assets/image-201803291751511.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancher1/server.assets/image-201803291751511.png -------------------------------------------------------------------------------- /static/img/rancherdesktop/examples/rancherUiMainPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/examples/rancherUiMainPage.png -------------------------------------------------------------------------------- /static/img/rancherdesktop/examples/rancherUiWelcomePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/examples/rancherUiWelcomePage.png -------------------------------------------------------------------------------- /static/img/rancherdesktop/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/favicon.ico -------------------------------------------------------------------------------- /static/img/rancherdesktop/intro/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/intro/intro.png -------------------------------------------------------------------------------- /static/img/rancherdesktop/kubernetes-cluster-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/kubernetes-cluster-progress.png -------------------------------------------------------------------------------- /static/img/rancherdesktop/kubernetes-settings-main-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/kubernetes-settings-main-page.png -------------------------------------------------------------------------------- /static/img/rancherdesktop/reset-kubernetes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/reset-kubernetes.png -------------------------------------------------------------------------------- /static/img/rancherdesktop/tutorial/docsVersionDropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/tutorial/docsVersionDropdown.png -------------------------------------------------------------------------------- /static/img/rancherdesktop/tutorial/localeDropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/tutorial/localeDropdown.png -------------------------------------------------------------------------------- /static/img/rancherdesktop/vscodedocker/rd-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/vscodedocker/rd-main.png -------------------------------------------------------------------------------- /static/img/rancherdesktop/vscodedocker/vscode-docker-add-docker-files-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/vscodedocker/vscode-docker-add-docker-files-1.png -------------------------------------------------------------------------------- /static/img/rancherdesktop/vscodedocker/vscode-docker-debug-breakpoint-hit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/vscodedocker/vscode-docker-debug-breakpoint-hit.png -------------------------------------------------------------------------------- /static/img/rancherdesktop/vscodedocker/vscode-docker-debug-breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/vscodedocker/vscode-docker-debug-breakpoint.png -------------------------------------------------------------------------------- /static/img/rancherdesktop/vscodedocker/vscode-docker-debug-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/vscodedocker/vscode-docker-debug-configuration.png -------------------------------------------------------------------------------- /static/img/rancherdesktop/vscodedocker/vscode-docker-marketplace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/vscodedocker/vscode-docker-marketplace.png -------------------------------------------------------------------------------- /static/img/rancherdesktop/vscodedocker/vscode-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/vscodedocker/vscode-main.png -------------------------------------------------------------------------------- /static/img/rancherdesktop/vscoderemotecontainers/rd-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/vscoderemotecontainers/rd-main.png -------------------------------------------------------------------------------- /static/img/rancherdesktop/vscoderemotecontainers/vscode-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/vscoderemotecontainers/vscode-main.png -------------------------------------------------------------------------------- /static/img/rancherdesktop/vscoderemotecontainers/vscode-remotedevelopment-appinbrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/vscoderemotecontainers/vscode-remotedevelopment-appinbrowser.png -------------------------------------------------------------------------------- /static/img/rancherdesktop/vscoderemotecontainers/vscode-remotedevelopment-commandbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/vscoderemotecontainers/vscode-remotedevelopment-commandbutton.png -------------------------------------------------------------------------------- /static/img/rancherdesktop/vscoderemotecontainers/vscode-remotedevelopment-commandpalette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/vscoderemotecontainers/vscode-remotedevelopment-commandpalette.png -------------------------------------------------------------------------------- /static/img/rancherdesktop/vscoderemotecontainers/vscode-remotedevelopment-containerprogress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/vscoderemotecontainers/vscode-remotedevelopment-containerprogress.png -------------------------------------------------------------------------------- /static/img/rancherdesktop/vscoderemotecontainers/vscode-remotedevelopment-containersuccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/vscoderemotecontainers/vscode-remotedevelopment-containersuccess.png -------------------------------------------------------------------------------- /static/img/rancherdesktop/vscoderemotecontainers/vscode-remotedevelopment-installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/vscoderemotecontainers/vscode-remotedevelopment-installed.png -------------------------------------------------------------------------------- /static/img/rancherdesktop/vscoderemotecontainers/vscode-remotedevelopment-marketplace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/vscoderemotecontainers/vscode-remotedevelopment-marketplace.png -------------------------------------------------------------------------------- /static/img/rancherdesktop/vscoderemotecontainers/vscode-remotedevelopment-openfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/vscoderemotecontainers/vscode-remotedevelopment-openfolder.png -------------------------------------------------------------------------------- /static/img/rancherdesktop/vscoderemotecontainers/vscode-remotedevelopment-trysample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rancherdesktop/vscoderemotecontainers/vscode-remotedevelopment-trysample.png -------------------------------------------------------------------------------- /static/img/rke/rke-etcd-backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rke/rke-etcd-backup.png -------------------------------------------------------------------------------- /static/img/rke/vsphere-advanced-parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rke/vsphere-advanced-parameters.png -------------------------------------------------------------------------------- /static/img/rke/vsphere-nodedriver-enable-uuid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrancher/docs-rancher2/d4bcc56dc07abe22ce6082b58da1bc83d4221eaf/static/img/rke/vsphere-nodedriver-enable-uuid.png --------------------------------------------------------------------------------