diff --git a/content/rancher/v2.x/en/concepts/catalogs/_index.md b/content/rancher/v2.x/en/concepts/catalogs/_index.md index ed62cb3b059..5d448de03d2 100644 --- a/content/rancher/v2.x/en/concepts/catalogs/_index.md +++ b/content/rancher/v2.x/en/concepts/catalogs/_index.md @@ -35,11 +35,16 @@ Within Rancher, you can access several different catalogs either by default or t ### Custom Catalog Creation -Creating a custom catalog for Rancher is straightforward. Create a Git Repo and then direct Rancher toward the repo. +Creating a custom catalog for Rancher is straightforward. Create a Git repo and then direct Rancher toward the repo. -For step-by-step directions, see [placeholder](placeholder). +Custom catalog requirements include: -When you're done creating the catalog, populate it charts. See [Custom Chart Creation](#custom-chart-creation). +- A unique name. +- A URL that `git clone` can handle. + +For step-by-step directions, see [Adding Custom Catalogs]({{< baseurl >}}rancher/v2.x/en/tasks/global-configuration/catalog/adding-custom-catalogs). + +When you're done creating the catalog, populate it charts. Custom catalogs can support native Helm charts or Rancher charts. See [Custom Chart Creation](#custom-chart-creation). ## Chart Types @@ -53,7 +58,7 @@ Rancher supports two different types of charts: - **Rancher Charts** - Rancher charts mirror native helm charts, although they add two files that enhance user experience: `app-readme.md` and `questions.yaml`. Read more about them in [Rancher Chart Additional Files](#rancher-chart-additional-files) + Rancher charts mirror native helm charts, although they add two files that enhance user experience: `app-readme.md` and `questions.yaml`. Read more about them in [Rancher Chart Additional Files](#rancher-chart-additional-files). Advantages of Rancher charts include: @@ -130,7 +135,7 @@ Before you create your own custom catalog, you should have a basic understanding A file that provides descriptive text in the chart's UI header. The following image displays the difference between a Rancher chart (which includes `app-readme.md`) and a native Helm chart (which does not). - **Example: `app-readme.md` Rancher Output** + Rancher Chart with app-readme.md (left) vs. Helm Chart without (right) ![app-readme.md]({{< baseurl >}}/img/rancher/app-readme.png) @@ -139,13 +144,15 @@ Before you create your own custom catalog, you should have a basic understanding A file that containing questions for a form. These form questions simplify deployment of a chart. Without it, you must configure the deployment using key value pairs, which is more difficult. The following image displays the difference between a Rancher chart (which includes `questions.yml`) and a native Helm chart (which does not). - **Example: `questions.yml` Rancher Output** + Rancher Chart with question.yml (left) vs. Helm Chart without (right) ![questions.yml]({{< baseurl >}}/img/rancher/questions.png) ### Custom Chart Creation - You can fill your custom catalog with either Helm Charts or Rancher Charts, although we recommend Rancher Charts due to their enhanced user experience. + You can fill your custom catalogs with either Helm Charts or Rancher Charts, although we recommend Rancher Charts due to their enhanced user experience. + + For information on how to add and customize charts for a custom catalog, see [Customizing Charts]({{< baseurl >}}/rancher/v2.x/en/tasks/global-configuration/catalog/customizing-charts). >**Note:** For a complete walk through of developing charts, see the upstream Helm chart [developer reference](https://docs.helm.sh/developing_charts/). diff --git a/content/rancher/v2.x/en/tasks/global-configuration/catalog/_index.md b/content/rancher/v2.x/en/tasks/global-configuration/catalog/_index.md index 3d768a3db76..79421f86fb8 100644 --- a/content/rancher/v2.x/en/tasks/global-configuration/catalog/_index.md +++ b/content/rancher/v2.x/en/tasks/global-configuration/catalog/_index.md @@ -3,107 +3,8 @@ title: Catalogs and Charts weight: 3026 --- -Within Rancher, you can use Helm Charts for quick deployment of applications from a central repository. +This section includes step-by-step instruction on how to configure default and custom catalogs. -## Converting Native Helm Charts for Rancher - -To convert a native Helm chart for use in Rancher, you must add two files for Rancher: `app-readme.md` and `questions.yml`. - ->**Note:** Conversion of Helm charts for use in Rancher takes place outside of the Rancher UI. - -1. Create an `app-readme.md` file. -
-
- - **Example**: - - ``` - $ cat ./app-readme.md - - # Wordpress ROCKS! - ``` - - [What's an `app-readme.md` file?]({{< baseurl >}}/rancher/v2.x/en/concepts/catalogs/#rancher-chart-structure) - -2. Create a `questions.yml` file that prompts the user for parameters. - - The example below prompts the user to enable persistent storage with a radio button. If the user enables persistent storage, they are prompted for a storage class and volume size. - - The example also provides a list of categories for the chart. This metadata helps users find the chart when browsing the catalog UI. - -
-        categories:
-        - Blog
-        - CMS
-        questions:
-        - variable: persistence.enabled
-        default: "false"
-        description: "Enable persistent volume for WordPress"
-        type: boolean
-        required: true
-        label: WordPress Persistent Volume Enabled
-        show_subquestion_if: true
-        group: "WordPress Settings"
-        subquestions:
-        - variable: persistence.size
-            default: "10Gi"
-            description: "WordPress Persistent Volume Size"
-            type: string
-            label: WordPress Volume Size
-        - variable: persistence.storageClass
-            default: ""
-            description: "If undefined or null, uses the default StorageClass. Default to null"
-            type: storageclass
-            label: Default StorageClass for WordPress
-    
- - [What's a `questions.yml` file?]({{< baseurl >}}/rancher/v2.x/en/concepts/catalogs/#rancher-chart-structure) - - [What variables can I use in question.yml?]({{< baseurl >}}/rancher/v2.x/en/concepts/catalogs/#question-variable-reference) - -## Adding Custom Catalogs - ->**Note:** -> ->- Currently, you can only add custom catalogs to Rancher at the global level. Therefore, any catalog that you add is shared with all clusters and projects. -> ->- Currently, only unauthenticated catalogs are supported. - -You can create custom catalogs of Helm charts for use in Rancher. Custom catalogs are helpful for fast deployment of applications unique to your environment. - ->**Prerequisites:** -> ->- Create a custom catalog in GitHub. For more information, see [Catalogs]({{< baseurl >}}/rancher/v2.x/en/concepts/catalogs). ->- Convert the native Helm charts in your custom catalog for use in Rancher. For more information, see [Converting Native Helm Charts for Rancher](#converting-native-helm-charts-for-rancher). - -1. From the **Global** view, choose **Catalogs** from the main menu. -2. Click **Add Catalog**. -3. Complete the form and click **Create**. - -**Result**: Your catalog is added to Rancher. The catalog is available for deployment of your applications. - -#### Question Variable Reference - -This reference contains variables that you can use in `questions.yml`. - -| Variable | Type | Required | Description | -| ------------- | ------------- | --- |------------- | -| variable | string | true | define the variable name specified in the `values.yml` file, using `foo.bar` for nested object. | -| label | string | true | define the UI label. | -| description | string | false | specify the description of the variable.| -| type | string | false | default to `string` if not specified (current supported types are string, boolean, int, enum, password, storageclass and hostname).| -| required | bool | false | define if the variable is required or not (true \| false)| -| default | string | false | specify the default value. | -| group | string | false | group questions by input value. | -| min_length | int | false | min character length.| -| max_length | int | false | max character length.| -| min | int | false | min integer length. | -| max | int | false | max integer length. | -| options | []string | false | specify the options when the vriable type is `enum`, for example: options:
- "ClusterIP"
- "NodePort"
- "LoadBalancer"| -| valid_chars | string | false | regular expression for input chars validation. | -| invalid_chars | string | false | regular expression for invalid input chars validation.| -| subquestions | []subquestion | false| add an array of subquestions.| -| show_if | string | false | show current variable if conditional variable is true, for example `show_if: "serviceType=Nodeport"` | -| show\_subquestion_if | string | false | show subquestions if is true or equal to one of the options. for example `show_subquestion_if: "true"`| - ->**Note:** `subquestions[]` cannot contain `subquestions` or `show_subquestions_if` keys, but all other keys in the above table are supported. +- [Enabling Default Catalogs]({{< baseurl >}}/rancher/v2.x/en/tasks/global-configuration/catalog/enabling-default-catalogs) +- [Adding Custom Catalogs]({{< baseurl >}}/rancher/v2.x/en/tasks/global-configuration/catalog/adding-custom-catalogs) +- [Customizing Charts]({{< baseurl >}}/rancher/v2.x/en/tasks/global-configuration/catalog/customizing-charts) \ No newline at end of file diff --git a/content/rancher/v2.x/en/tasks/global-configuration/catalog/adding-custom-catalogs/_index.md b/content/rancher/v2.x/en/tasks/global-configuration/catalog/adding-custom-catalogs/_index.md new file mode 100644 index 00000000000..582d88fbc18 --- /dev/null +++ b/content/rancher/v2.x/en/tasks/global-configuration/catalog/adding-custom-catalogs/_index.md @@ -0,0 +1,30 @@ +--- +title: Adding Custom Catalogs +weight: 50 +--- + +You can create custom catalogs of charts for use in Rancher. Custom catalogs are helpful for fast deployment of applications unique to your environment. + +>**Notes:** +> +>- Currently, you can only add custom catalogs to Rancher at the global level. Therefore, any catalog that you add is shared with all clusters and projects. +> +>- Currently, only unauthenticated catalogs are supported. +
+
+ +>**Prerequisites:** +> +>- Recommended: Read [Catalogs and Charts]({{< baseurl >}}/rancher/v2.x/en/concepts/catalogs). +>- Create a GitHub respository to serve as your custom catalog. + + +1. From the **Global** view, choose **Catalogs** from the main menu. +2. Click **Add Catalog**. +3. Complete the form and click **Create**. + +**Result**: Your catalog is added to Rancher. + +## What's Next? + +Add native Helm charts, Rancher charts, or both to your repository. For more information, see [Customizing Charts]({{< baseurl >}}/rancher/v2.x/en/tasks/global-configuration/catalogs). \ No newline at end of file diff --git a/content/rancher/v2.x/en/tasks/global-configuration/catalog/customizing-charts/_index.md b/content/rancher/v2.x/en/tasks/global-configuration/catalog/customizing-charts/_index.md new file mode 100644 index 00000000000..521e0450980 --- /dev/null +++ b/content/rancher/v2.x/en/tasks/global-configuration/catalog/customizing-charts/_index.md @@ -0,0 +1,108 @@ +--- +title: Customizing Charts +weight: 75 +--- + +Before you can deploy customized catalog apps using Rancher, you must add charts to the GitHub repository serving as your custom catalog. + +The custom catalog can contain native Helm charts, Rancher charts, or a combination of both (although we recommend using Rancher charts). + +>**Prerequisites:** + +>- Recommended: Read [Catalogs and Charts]({{< baseurl >}}/rancher/v2.x/en/concepts/catalogs). +>- Create a GitHub repository to serve as your custom catalog. +>- Complete [Adding Custom Catalogs]({{< baseurl >}}/Users/markbishop/Documents/GitHub/docs/content/rancher/v2.x/en/tasks/global-configuration/catalog/adding-custom-catalogs). + +>**Note:** Customization of Helm charts takes place outside of the Rancher UI. + +1. Within the GitHub repo that you're using as your custom catalog, create a directory structure that mirrors the structure listed in [Chart Directory Structure]({{< baseurl >}}/rancher/v2.x/en/concepts/catalogs/#chart-directory-structure). + + Rancher requires this directory structure, although `app-readme.md` and `questions.yml` are optional. + + >**Tip:** + > + >- To begin customizing a chart, copy one from either the [Rancher Library](https://github.com/rancher/charts) or the [Helm Stable](https://github.com/kubernetes/charts/tree/master/stable). + >- For a complete walk through of developing charts, see the upstream Helm chart [developer reference](https://docs.helm.sh/developing_charts/). + +2. **Recommended:** Create an `app-readme.md` file. + + Use this file to create custom text for your chart's header in the Rancher UI. You can use this text to notify users that the chart is customized for your environment or provide special instruction on how to use it. +
+
+ **Example**: + + ``` + $ cat ./app-readme.md + + # Wordpress ROCKS! + ``` + +3. **Recommended:** Create a `questions.yml` file. + + This file creates a form for users to specify deployment parameters when they deploy the custom chart. Without this file, users will have to specify the parameters manually using key value pairs, which isn't user-friendly. +
+
+ The example below creates a form that prompts users for persistent volume size and a storage class. +
+
+ For a list of variables you can use when creating a `questions.yml` file, see [Question Variable Reference](#question-variable-reference). + +
+        categories:
+        - Blog
+        - CMS
+        questions:
+        - variable: persistence.enabled
+        default: "false"
+        description: "Enable persistent volume for WordPress"
+        type: boolean
+        required: true
+        label: WordPress Persistent Volume Enabled
+        show_subquestion_if: true
+        group: "WordPress Settings"
+        subquestions:
+        - variable: persistence.size
+            default: "10Gi"
+            description: "WordPress Persistent Volume Size"
+            type: string
+            label: WordPress Volume Size
+        - variable: persistence.storageClass
+            default: ""
+            description: "If undefined or null, uses the default StorageClass. Default to null"
+            type: storageclass
+            label: Default StorageClass for WordPress
+    
+ + 4. Check the customized chart into your GitHub repo. + +**Result:** Your custom chart is added to the repo. Your Rancher Server will replicate the chart within a few minutes. + +## What's Next? + +Launch your custom catalog app. For more information, see [Launching a Catalog App]({{< baseurl >}}/rancher/v2.x/en/tasks/projects/launch-a-catalog-app). + +## Question Variable Reference + +This reference contains variables that you can use in `questions.yml`. + +| Variable | Type | Required | Description | +| ------------- | ------------- | --- |------------- | +| variable | string | true | define the variable name specified in the `values.yml` file, using `foo.bar` for nested object. | +| label | string | true | define the UI label. | +| description | string | false | specify the description of the variable.| +| type | string | false | default to `string` if not specified (current supported types are string, boolean, int, enum, password, storageclass and hostname).| +| required | bool | false | define if the variable is required or not (true \| false)| +| default | string | false | specify the default value. | +| group | string | false | group questions by input value. | +| min_length | int | false | min character length.| +| max_length | int | false | max character length.| +| min | int | false | min integer length. | +| max | int | false | max integer length. | +| options | []string | false | specify the options when the vriable type is `enum`, for example: options:
- "ClusterIP"
- "NodePort"
- "LoadBalancer"| +| valid_chars | string | false | regular expression for input chars validation. | +| invalid_chars | string | false | regular expression for invalid input chars validation.| +| subquestions | []subquestion | false| add an array of subquestions.| +| show_if | string | false | show current variable if conditional variable is true, for example `show_if: "serviceType=Nodeport"` | +| show\_subquestion_if | string | false | show subquestions if is true or equal to one of the options. for example `show_subquestion_if: "true"`| + +>**Note:** `subquestions[]` cannot contain `subquestions` or `show_subquestions_if` keys, but all other keys in the above table are supported. diff --git a/content/rancher/v2.x/en/tasks/global-configuration/catalog/enabling-default-catalogs/_index.md b/content/rancher/v2.x/en/tasks/global-configuration/catalog/enabling-default-catalogs/_index.md new file mode 100644 index 00000000000..7faa1b57159 --- /dev/null +++ b/content/rancher/v2.x/en/tasks/global-configuration/catalog/enabling-default-catalogs/_index.md @@ -0,0 +1,21 @@ +--- +title: Enabling Default Catalogs +weight: 25 +--- + +Out-of-the-box, you can enable several different catalog repositories to simplify deployment of applications. + +1. From the **Global** view, choose **Catalogs** from the main menu. +2. Toggle the default catalogs that you want use to a setting of **Enabled**. The [default catalogs]({{< baseurl >}}/rancher/v2.x/en/concepts/catalogs/#catalog-types) are: + + - **Library** + - **Helm Stable** + - **Helm Incubator** + + >**Note:** If you want to use a custom catalog, see [Adding Custom Catalogs]({{< baseurl >}}/rancher/v2.x/en/tasks/global-configuration/catalog/adding-custom-catalogs) instead of this topic. + +**Result:** The chosen catalogs are enabled. Wait a few minutes for Rancher to replicate the catalog charts. When replication completes, you'll be able to see them in any of your projects by selecting **Catalog Apps** from the main menu. + +## What's Next? + +Deploy catalog applications to your cluster nodes. For more information, see [Launching a Catalog App]({{< baseurl >}}/rancher/v2.x/en/tasks/projects/launch-a-catalog-app). \ No newline at end of file diff --git a/content/rancher/v2.x/en/tasks/projects/launch-a-catalog-app/_index.md b/content/rancher/v2.x/en/tasks/projects/launch-a-catalog-app/_index.md index 912d092d279..b0570f303c5 100644 --- a/content/rancher/v2.x/en/tasks/projects/launch-a-catalog-app/_index.md +++ b/content/rancher/v2.x/en/tasks/projects/launch-a-catalog-app/_index.md @@ -3,28 +3,29 @@ title: Launching a Catalog App weight: draft: true --- +After you've enabled default catalogs or setup a custom catalog, you can launch apps using a catalog instead of a standard deployment. + +>**Prerequiste:** Enable a catalog. For more information, see [Catalogs and Charts]({{< baseurl >}}/rancher/v2.x/en/concepts/catalogs) 1. From the **Global** view, open the project that you want to deploy to. 2. From the main menu, choose **Catalog Apps**. Then click **Launch**. -3. Click **Launch**. +3. Find the app that you want to launch, and then click **View Now**. -4. Find the app that you want to launch, and then click **View Now**. - -5. Under **Configuration Options** enter a **Name**. By default, this name is also used to create a Kubernetes namespace for the application. +4. Under **Configuration Options** enter a **Name**. By default, this name is also used to create a Kubernetes namespace for the application. * If you would like to change the **Namespace**, click **Customize** and enter a new name * If you want to use a different namespace that already exists, click **Customize**, and then click **Use an existing namespace**. Choose a namespace from the list. -6. Select a **Template Version**. +5. Select a **Template Version**. -7. Optional: Add answers to the deployment. Click **Add Answers** to add key value pairs. +6. Complete the rest of the **Configuration Options**. - * For native Helm charts, answers are provided as key value pairs in the **Answers** section. - * Keys and values are available within the **Detailed Descriptions** accordion. + * For native Helm charts (i.e., charts from the **Helm Stable** or **Helm Incubator** catalogs), answers are provided as key value pairs in the **Answers** section. + * Keys and values are available within **Detailed Descriptions**. -8. Review the files in **Preview**. When you're satisfied, click **Launch** +7. Review the files in **Preview**. When you're satisfied, click **Launch**. **Result**: Your application is deployed to your chosen namespace. You can view the application status from the project's: diff --git a/src/img/header-6-dark-01.svg b/src/img/header-6-dark-01.svg index c1c51ca1843..f0774206c61 100644 --- a/src/img/header-6-dark-01.svg +++ b/src/img/header-6-dark-01.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/img/login-container-farm-k8s.svg b/src/img/login-container-farm-k8s.svg index c4aa7d90bab..a30779f5178 100644 --- a/src/img/login-container-farm-k8s.svg +++ b/src/img/login-container-farm-k8s.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/img/rancher/airgap/edit-system-default-registry.png b/src/img/rancher/airgap/edit-system-default-registry.png index d1b2b387dbb..8b8d4615973 100644 Binary files a/src/img/rancher/airgap/edit-system-default-registry.png and b/src/img/rancher/airgap/edit-system-default-registry.png differ diff --git a/src/img/rancher/airgap/enter-system-default-registry.png b/src/img/rancher/airgap/enter-system-default-registry.png index 6b105c46262..804400364ed 100644 Binary files a/src/img/rancher/airgap/enter-system-default-registry.png and b/src/img/rancher/airgap/enter-system-default-registry.png differ diff --git a/src/img/rancher/airgap/privateregistry.svg b/src/img/rancher/airgap/privateregistry.svg index 71bd2006a01..20a1e7eb98b 100644 --- a/src/img/rancher/airgap/privateregistry.svg +++ b/src/img/rancher/airgap/privateregistry.svg @@ -1,2 +1 @@ - -
DockerHub
DockerHub
Host able to access DockerHub
Host able to access DockerHub
On-premise
registry
[Not supported by viewer]
rancher-save-images.sh
rancher-save-images.sh
rancher-load-images.sh registry.yourdomain.com:5000
rancher-load-images.sh registry.yourdomain.com:5000
On-premise
host able to access private registry
[Not supported by viewer]
rancher-images.tar.gz
rancher-images.tar.gz
Host able to access DockerHub
Host able to access DockerHub
Transfer rancher-images.tar.gz
Transfer rancher-images.tar.gz
On-premise
host able to access private registry
[Not supported by viewer]
\ No newline at end of file +
DockerHub
DockerHub
Host able to access DockerHub
Host able to access DockerHub
On-premise
registry
[Not supported by viewer]
rancher-save-images.sh
rancher-save-images.sh
rancher-load-images.sh registry.yourdomain.com:5000
rancher-load-images.sh registry.yourdomain.com:5000
On-premise
host able to access private registry
[Not supported by viewer]
rancher-images.tar.gz
rancher-images.tar.gz
Host able to access DockerHub
Host able to access DockerHub
Transfer rancher-images.tar.gz
Transfer rancher-images.tar.gz
On-premise
host able to access private registry
[Not supported by viewer]
\ No newline at end of file diff --git a/src/img/rancher/airgap/privateregistrypushpull.svg b/src/img/rancher/airgap/privateregistrypushpull.svg index 21760c85f62..cc02ca393a4 100644 --- a/src/img/rancher/airgap/privateregistrypushpull.svg +++ b/src/img/rancher/airgap/privateregistrypushpull.svg @@ -1,2 +1 @@ - -
DockerHub
DockerHub
Host able to access DockerHub and private registry
[Not supported by viewer]
docker pull
docker pull
On-premise
registry
[Not supported by viewer]
docker push
docker push
\ No newline at end of file +
DockerHub
DockerHub
Host able to access DockerHub and private registry
[Not supported by viewer]
docker pull
docker pull
On-premise
registry
[Not supported by viewer]
docker push
docker push
\ No newline at end of file diff --git a/src/img/rancher/airgap/settings.png b/src/img/rancher/airgap/settings.png index c3ddd8f2528..453dcd92fc6 100644 Binary files a/src/img/rancher/airgap/settings.png and b/src/img/rancher/airgap/settings.png differ diff --git a/src/img/rancher/app-readme.png b/src/img/rancher/app-readme.png index 0ff38ad9339..ccc00b49ee9 100644 Binary files a/src/img/rancher/app-readme.png and b/src/img/rancher/app-readme.png differ diff --git a/src/img/rancher/container-port-field.png b/src/img/rancher/container-port-field.png index 86474e47eb2..1d702f8ff1b 100644 Binary files a/src/img/rancher/container-port-field.png and b/src/img/rancher/container-port-field.png differ diff --git a/src/img/rancher/global-menu.png b/src/img/rancher/global-menu.png index 39755fe0aca..25ba756e0b4 100644 Binary files a/src/img/rancher/global-menu.png and b/src/img/rancher/global-menu.png differ diff --git a/src/img/rancher/ha/rancher2ha-l7.svg b/src/img/rancher/ha/rancher2ha-l7.svg index 87041de905e..e4df97c794a 100644 --- a/src/img/rancher/ha/rancher2ha-l7.svg +++ b/src/img/rancher/ha/rancher2ha-l7.svg @@ -1,2 +1 @@ - -
Rancher
Rancher
Node 1
Node 1
Node 2
Node 2
Node 3
Node 3
rancher.yourdomain.com
rancher.yourdomain.com<br>
NGINX Ingress controller
(HTTP)
NGINX Ingress controller<br>(HTTP)<br>
NGINX Ingress controller
(HTTP)
NGINX Ingress controller<br>(HTTP)<br>
NGINX Ingress controller
(HTTP)
NGINX Ingress controller<br>(HTTP)<br>
Rancher
Rancher
Layer 7 Load Balancer
(HTTPS)
Layer 7 Load Balancer<br>(HTTPS)<br>
\ No newline at end of file +
Rancher
Rancher
Node 1
Node 1
Node 2
Node 2
Node 3
Node 3
rancher.yourdomain.com
rancher.yourdomain.com<br>
NGINX Ingress controller
(HTTP)
NGINX Ingress controller<br>(HTTP)<br>
NGINX Ingress controller
(HTTP)
NGINX Ingress controller<br>(HTTP)<br>
NGINX Ingress controller
(HTTP)
NGINX Ingress controller<br>(HTTP)<br>
Rancher
Rancher
Layer 7 Load Balancer
(HTTPS)
Layer 7 Load Balancer<br>(HTTPS)<br>
\ No newline at end of file diff --git a/src/img/rancher/ha/rancher2ha.svg b/src/img/rancher/ha/rancher2ha.svg index 6fcd6eda6c0..0a5009afef4 100644 --- a/src/img/rancher/ha/rancher2ha.svg +++ b/src/img/rancher/ha/rancher2ha.svg @@ -1,2 +1 @@ - -
Rancher
Rancher
Node 1
Node 1
Node 2
Node 2
Node 3
Node 3
rancher.yourdomain.com
rancher.yourdomain.com<br>
NGINX Ingress controller
(HTTPS)
NGINX Ingress controller<br>(HTTPS)<br>
NGINX Ingress controller
(HTTPS)
NGINX Ingress controller<br>(HTTPS)<br>
NGINX Ingress controller
(HTTPS)
NGINX Ingress controller<br>(HTTPS)<br>
Rancher
Rancher
Layer 4 Load Balancer
(TCP)
Layer 4 Load Balancer<br>(TCP)<br>
\ No newline at end of file +
Rancher
Rancher
Node 1
Node 1
Node 2
Node 2
Node 3
Node 3
rancher.yourdomain.com
rancher.yourdomain.com<br>
NGINX Ingress controller
(HTTPS)
NGINX Ingress controller<br>(HTTPS)<br>
NGINX Ingress controller
(HTTPS)
NGINX Ingress controller<br>(HTTPS)<br>
NGINX Ingress controller
(HTTPS)
NGINX Ingress controller<br>(HTTPS)<br>
Rancher
Rancher
Layer 4 Load Balancer
(TCP)
Layer 4 Load Balancer<br>(TCP)<br>
\ No newline at end of file diff --git a/src/img/rancher/listening-port-field.png b/src/img/rancher/listening-port-field.png index 8f62f4f3038..b88adbeab9b 100644 Binary files a/src/img/rancher/listening-port-field.png and b/src/img/rancher/listening-port-field.png differ diff --git a/src/img/rancher/nodeport-dropdown.png b/src/img/rancher/nodeport-dropdown.png index 1ab8721fb4b..c8da93fbde6 100644 Binary files a/src/img/rancher/nodeport-dropdown.png and b/src/img/rancher/nodeport-dropdown.png differ diff --git a/src/img/rancher/permissions.png b/src/img/rancher/permissions.png index 2f406f2672a..f453510d44b 100644 Binary files a/src/img/rancher/permissions.png and b/src/img/rancher/permissions.png differ diff --git a/src/img/rancher/persistent-volume.png b/src/img/rancher/persistent-volume.png index 7d8c42f1ee5..327da071bf2 100644 Binary files a/src/img/rancher/persistent-volume.png and b/src/img/rancher/persistent-volume.png differ diff --git a/src/img/rancher/port-communications.png b/src/img/rancher/port-communications.png index 18a18910a6b..ca1d3356854 100644 Binary files a/src/img/rancher/port-communications.png and b/src/img/rancher/port-communications.png differ diff --git a/src/img/rancher/principal-ID.png b/src/img/rancher/principal-ID.png index 037993bdeed..75cf687729f 100644 Binary files a/src/img/rancher/principal-ID.png and b/src/img/rancher/principal-ID.png differ diff --git a/src/img/rancher/questions.png b/src/img/rancher/questions.png index 4ef916c0d47..44ad948c67e 100644 Binary files a/src/img/rancher/questions.png and b/src/img/rancher/questions.png differ diff --git a/src/img/rancher/rancher-architecture.png b/src/img/rancher/rancher-architecture.png index ac551e4d73b..9ccff73fc59 100644 Binary files a/src/img/rancher/rancher-architecture.png and b/src/img/rancher/rancher-architecture.png differ diff --git a/src/img/rancher/rke-etcd-backup.png b/src/img/rancher/rke-etcd-backup.png index c6f04f6e9c6..b40c550618d 100644 Binary files a/src/img/rancher/rke-etcd-backup.png and b/src/img/rancher/rke-etcd-backup.png differ diff --git a/src/img/rancher/sign-in-external.png b/src/img/rancher/sign-in-external.png index a263db3e6e8..0481642fb1f 100644 Binary files a/src/img/rancher/sign-in-external.png and b/src/img/rancher/sign-in-external.png differ diff --git a/src/img/rancher/sign-in.png b/src/img/rancher/sign-in.png index e76a1cb1237..683e069e05d 100644 Binary files a/src/img/rancher/sign-in.png and b/src/img/rancher/sign-in.png differ diff --git a/src/img/rancher/sign-out-local.png b/src/img/rancher/sign-out-local.png index 3ed2a717e81..033c46beb66 100644 Binary files a/src/img/rancher/sign-out-local.png and b/src/img/rancher/sign-out-local.png differ diff --git a/src/img/rancher/storage-classes.png b/src/img/rancher/storage-classes.png index d63e0d812b2..f798a174658 100644 Binary files a/src/img/rancher/storage-classes.png and b/src/img/rancher/storage-classes.png differ diff --git a/src/img/rancher/users-page.png b/src/img/rancher/users-page.png index 69ada996f0d..9a819f2f138 100644 Binary files a/src/img/rancher/users-page.png and b/src/img/rancher/users-page.png differ