diff --git a/.github/workflows/create-highlights.yml b/.github/workflows/create-highlights.yml index 364f9121c3..6edf14f9d1 100644 --- a/.github/workflows/create-highlights.yml +++ b/.github/workflows/create-highlights.yml @@ -38,6 +38,6 @@ jobs: This PR has been created automatically by the 'Create highlight PR' Github workflow to publish the weekly highlights. - This action is triggered every Thrusday morning to collect all the highlights from the selected apps in giantswarm/github repository. The highlights are collected from the changelog entries from .github repository apps. + This action is triggered every Thursday morning to collect all the highlights from the selected apps in giantswarm/github repository. The highlights are collected from the changelog entries from .github repository apps. Please review the changes, group the entries for each app making sure it is digestible for the customers and highlight the breaking changes in the top. \ No newline at end of file diff --git a/.github/workflows/generate-review-issues.yaml b/.github/workflows/generate-review-issues.yaml index f5aac5b017..b2c5317596 100644 --- a/.github/workflows/generate-review-issues.yaml +++ b/.github/workflows/generate-review-issues.yaml @@ -2,7 +2,7 @@ name: Generate review Issues weekly on: schedule: # At 0:00 on Sundays - - cron: '0 0 * * 0' + - cron: '0 0 * * 0' jobs: @@ -16,12 +16,13 @@ jobs: run: pip3 install click colored PyYAML - name: Validate front matter and last review date - run: | - echo "ISSUES=$(python3 scripts/validate-front-matter/script.py --validation last-reviewed --output json)" >> $GITHUB_ENV - + env: + GITHUB_TOKEN: ${{ secrets.TOKEN }} + run: make validate-last-reviewed + - name: Generate issues of out of date docs uses: giantswarm/open-issue@7774937e31b23a52257a34462a753b0a28a4d1f1 # 0.3.0 - with: + with: token: ${{ secrets.ISSUE_AUTOMATION }} org: giantswarm repo: giantswarm diff --git a/Makefile b/Makefile index aed9cdb717..48440aabc3 100644 --- a/Makefile +++ b/Makefile @@ -110,6 +110,16 @@ validate-front-matter: $(REGISTRY)/$(COMPANY)/docs-scriptrunner:latest \ /workdir/scripts/validate-front-matter/script.py +# Validate front matter for last-reviewed date. +validate-last-reviewed: + docker run --rm \ + --volume=${PWD}:/workdir:ro \ + -w /workdir \ + $(REGISTRY)/$(COMPANY)/docs-scriptrunner:latest \ + /workdir/scripts/validate-front-matter/script.py \ + --validation last-reviewed \ + --output json + # Print a report of pages with a last_review_date that's # too long ago. validate-last-reviewed: diff --git a/scripts/collect-changelog-entries/script.py b/scripts/collect-changelog-entries/script.py index c465badd01..8657295511 100644 --- a/scripts/collect-changelog-entries/script.py +++ b/scripts/collect-changelog-entries/script.py @@ -92,8 +92,7 @@ def main(): app_repos = fetch_app_repositories() # Define the metadata - metadata = f""" ---- + metadata = f"""--- date: {d}T14:00:00 title: Highlights for the week ending {d} changes_categories: diff --git a/scripts/update-helm-chart-reference/config.yaml b/scripts/update-helm-chart-reference/config.yaml index 3aab75a431..619ecf0859 100644 --- a/scripts/update-helm-chart-reference/config.yaml +++ b/scripts/update-helm-chart-reference/config.yaml @@ -29,42 +29,18 @@ source_repositories: - url: https://github.com/giantswarm/cluster-vsphere organization: giantswarm introduction: | - The `default-apps-vsphere` chart templates all the VMware infrastructure resources that are necessary to create a Cluster API vSphere cluster. + The `cluster-vsphere` chart templates all the VMware infrastructure resources that are necessary to create a Cluster API vSphere cluster. name: cluster-vsphere commit_reference: v0.9.8 - url: https://github.com/giantswarm/cluster-cloud-director organization: giantswarm introduction: | - The `default-apps-cloud-director` chart templates all the VMware infrastructure resources that are necessary to create a Cluster API VCD cluster. + The `cluster-cloud-director` chart templates all the VMware infrastructure resources that are necessary to create a Cluster API VCD cluster. name: cluster-cloud-director commit_reference: v0.14.2 - - url: https://github.com/giantswarm/default-apps-aws - organization: giantswarm - introduction: | - The `default-apps-aws` chart templates all the components required for a Cluster API AWS cluster like External DNS or CoreDNS. - name: default-apps-aws - commit_reference: v0.48.0 - url: https://github.com/giantswarm/default-apps-eks organization: giantswarm introduction: | - The `default-apps-eks` chart templates all the components required for a Cluster API EKS cluster like External DNS or CoreDNS. + The `default-apps-eks` chart templates all the standard apps deployed to AWS EKS clusters, like External DNS and CoreDNS. name: default-apps-eks commit_reference: v0.5.1 - - url: https://github.com/giantswarm/default-apps-azure - organization: giantswarm - introduction: | - The `default-apps-azure` chart templates all the components required for a Cluster API Azure cluster like External DNS or CoreDNS. - name: default-apps-azure - commit_reference: v0.8.3 - - url: https://github.com/giantswarm/default-apps-vsphere - organization: giantswarm - introduction: | - The `default-apps-vsphere` chart templates all the components required for a Cluster API VMware cluster like External DNS or CoreDNS. - name: default-apps-vsphere - commit_reference: v0.12.1 - - url: https://github.com/giantswarm/default-apps-cloud-director - organization: giantswarm - introduction: | - The `default-apps-cloud-director` chart templates all the components required for a Cluster API VMware cluster like External DNS or CoreDNS. - name: default-apps-cloud-director - commit_reference: v0.7.3 diff --git a/scripts/validate-front-matter/script.py b/scripts/validate-front-matter/script.py index 7545e7e95e..d67352474a 100644 --- a/scripts/validate-front-matter/script.py +++ b/scripts/validate-front-matter/script.py @@ -18,6 +18,7 @@ crds_path = 'src/content/reference/platform-api/crd' vintage_crds_path = 'src/content/vintage/use-the-api/management-api/crd' cluster_apps_path = 'src/content/reference/platform-api/cluster-apps' +meta_path = 'src/content/meta' docs_host = 'https://github.com/giantswarm/docs/blob/main/' todays_date = datetime.date.today() @@ -161,7 +162,7 @@ { 'id': NO_LAST_REVIEW_DATE, 'description': 'The page should have a last_review_date', - 'ignore_paths': [crds_path, vintage_crds_path, changes_path, cluster_apps_path], + 'ignore_paths': [crds_path, vintage_path, changes_path, cluster_apps_path, meta_path], 'severity': SEVERITY_WARN, }, { diff --git a/src/content/changes/highlights/2024-12-12.md b/src/content/changes/highlights/2024-12-12.md new file mode 100644 index 0000000000..5c144cda6b --- /dev/null +++ b/src/content/changes/highlights/2024-12-12.md @@ -0,0 +1,38 @@ +--- +date: 2024-12-12T14:00:00 +title: Highlights for the week ending 2024-12-12 +changes_categories: + - Highlights +owner: + - https://github.com/orgs/giantswarm/teams/sig-product +--- + +## Observability + +- **Grafana App** [v2.18.0](https://github.com/giantswarm/grafana-app/compare/v2.17.0...v2.18.0) + - Improved security by blocking default access to certain endpoints (`/swagger`, `/metrics`, and `/api/health`). + - Upgraded Grafana for a better user experience and new features (now at version 8.6.0). + +- **Prometheus Rules** [v4.30.0](https://github.com/giantswarm/prometheus-rules/compare/v4.27.0...v4.30.0) + - New alert added to help identify issues with `KubeadmConfig` configurations. + - Reduced unnecessary alerts during tests by ignoring certain HelmReleases. + - Added new alerts to quickly detect and resolve `karpenter` issues. + - Expanded alert timing for `PromtailRequestsErrors` to reduce false positives (now 25 minutes). + +- **Observability Operator** [v0.10.0](https://github.com/giantswarm/observability-operator/compare/v0.9.1...v0.10.0) + - Integrated `Mimir`, `Alertmanager` for enhanced alerting. + - Enhanced multi-tenant support within `Grafana` organizations. + - Fixed an issue that prevented `Grafana` from starting by ensuring config persistence. + +## Fleet Management + +- **Kube Downscaler App** [v0.4.0](https://github.com/giantswarm/kube-downscaler-app/compare/v0.3.0...v0.4.0) + - Introduced a new `Cilium` network policy template for improved network management. + +## Security + +- **Kyverno Policies** [v0.21.1](https://github.com/giantswarm/kyverno-policies/compare/v0.21.0...v0.21.1) + - Enhanced visibility with the addition of the `application.giantswarm.io/team` label. + +- **Event Exporter App** [v2.0.0](https://github.com/giantswarm/event-exporter-app/compare/v1.0.0...v2.0.0) + - Transitioned to a new, supported image source for better stability and support. diff --git a/src/content/changes/workload-cluster-releases-capa/releases/aws-25.4.0.md b/src/content/changes/workload-cluster-releases-capa/releases/aws-25.4.0.md new file mode 100644 index 0000000000..146d1f29f2 --- /dev/null +++ b/src/content/changes/workload-cluster-releases-capa/releases/aws-25.4.0.md @@ -0,0 +1,56 @@ +--- +# Generated by scripts/aggregate-changelogs. WARNING: Manual edits to this files will be overwritten. +aliases: +- /changes/tenant-cluster-releases-capa/releases/capa-aws-25.4.0/ +changes_categories: +- Workload cluster releases for CAPA +changes_entry: + repository: giantswarm/releases + url: https://github.com/giantswarm/releases/tree/master/capa/v25.4.0 + version: aws-25.4.0 + version_tag: aws-25.4.0 +date: '2024-12-12T12:00:00' +description: Release notes for CAPA workload cluster release aws-25.4.0, published + on 12 December 2024, 12:00. +title: Workload cluster release aws-25.4.0 for CAPA +--- + +This release introduces `aws-node-termination-handler` for graceful draining of nodes during an upgrade or other type of replacement of worker nodes. + +Details can be found in the [node pools documentation](https://docs.giantswarm.io/tutorials/fleet-management/cluster-management/node-pools/#what-happens-when-rolling-nodes). + +## Changes compared to v25.3.0 + +### Components + +- cluster-aws from v1.3.4 to v1.3.5 + +### cluster-aws [v1.3.4...v1.3.5](https://github.com/giantswarm/cluster-aws/compare/v1.3.4...v1.3.5) + +#### Added + +- Values: Add `global.providerSpecific.controlPlaneAmi` & `global.providerSpecific.nodePoolAmi`. +- Add aws-node-termination-handler bundle +- Make ASG lifecycle hook heartbeat timeout configurable + +### Apps + +- aws-nth-bundle v1.2.0 +- cert-exporter from v2.9.0 to v2.9.3 + +### aws-nth-bundle [v1.2.0](https://github.com/giantswarm/aws-nth-bundle/releases/tag/v1.2.0) + +#### Added + +- Send spot instance interruption and instance state change events to SQS queue so that aws-node-termination-handler can react to them + +### cert-exporter [v2.9.0...v2.9.3](https://github.com/giantswarm/cert-exporter/compare/v2.9.0...v2.9.3) + +#### Added + +- Chart: Add VPA and resources configuration for deployment and daemonset. ([#382](https://github.com/giantswarm/cert-exporter/pull/382)) + +#### Changed + +- Chart: Enable `global.podSecurityStandards.enforced`. ([#420](https://github.com/giantswarm/cert-exporter/pull/420)) +- Chart: Update PolicyExceptions to v2beta1. ([#358](https://github.com/giantswarm/cert-exporter/pull/358)) diff --git a/src/content/changes/workload-cluster-releases-capa/releases/aws-26.3.0.md b/src/content/changes/workload-cluster-releases-capa/releases/aws-26.3.0.md new file mode 100644 index 0000000000..42fd759584 --- /dev/null +++ b/src/content/changes/workload-cluster-releases-capa/releases/aws-26.3.0.md @@ -0,0 +1,56 @@ +--- +# Generated by scripts/aggregate-changelogs. WARNING: Manual edits to this files will be overwritten. +aliases: +- /changes/tenant-cluster-releases-capa/releases/capa-aws-26.3.0/ +changes_categories: +- Workload cluster releases for CAPA +changes_entry: + repository: giantswarm/releases + url: https://github.com/giantswarm/releases/tree/master/capa/v26.3.0 + version: aws-26.3.0 + version_tag: aws-26.3.0 +date: '2024-12-12T12:00:00' +description: Release notes for CAPA workload cluster release aws-26.3.0, published + on 12 December 2024, 12:00. +title: Workload cluster release aws-26.3.0 for CAPA +--- + +This release introduces `aws-node-termination-handler` for graceful draining of nodes during an upgrade or other type of replacement of worker nodes. + +Details can be found in the [node pools documentation](https://docs.giantswarm.io/tutorials/fleet-management/cluster-management/node-pools/#what-happens-when-rolling-nodes). + +## Changes compared to v26.2.0 + +### Components + +- cluster-aws from v1.3.4 to v1.3.5 + +### cluster-aws [v1.3.4...v1.3.5](https://github.com/giantswarm/cluster-aws/compare/v1.3.4...v1.3.5) + +#### Added + +- Values: Add `global.providerSpecific.controlPlaneAmi` & `global.providerSpecific.nodePoolAmi`. +- Add aws-node-termination-handler bundle +- Make ASG lifecycle hook heartbeat timeout configurable + +### Apps + +- aws-nth-bundle v1.2.0 +- cert-exporter from v2.9.0 to v2.9.3 + +### aws-nth-bundle [v1.2.0](https://github.com/giantswarm/aws-nth-bundle/releases/tag/v1.2.0) + +#### Added + +- Send spot instance interruption and instance state change events to SQS queue so that aws-node-termination-handler can react to them + +### cert-exporter [v2.9.0...v2.9.3](https://github.com/giantswarm/cert-exporter/compare/v2.9.0...v2.9.3) + +#### Added + +- Chart: Add VPA and resources configuration for deployment and daemonset. ([#382](https://github.com/giantswarm/cert-exporter/pull/382)) + +#### Changed + +- Chart: Enable `global.podSecurityStandards.enforced`. ([#420](https://github.com/giantswarm/cert-exporter/pull/420)) +- Chart: Update PolicyExceptions to v2beta1. ([#358](https://github.com/giantswarm/cert-exporter/pull/358)) diff --git a/src/content/getting-started/install-an-application/_index.md b/src/content/getting-started/install-an-application/index.md similarity index 100% rename from src/content/getting-started/install-an-application/_index.md rename to src/content/getting-started/install-an-application/index.md diff --git a/src/content/getting-started/observe-your-clusters-and-apps/_index.md b/src/content/getting-started/observe-your-clusters-and-apps/index.md similarity index 100% rename from src/content/getting-started/observe-your-clusters-and-apps/_index.md rename to src/content/getting-started/observe-your-clusters-and-apps/index.md diff --git a/src/content/meta/shared-installation.md b/src/content/meta/shared-installation.md deleted file mode 100644 index e85a16387a..0000000000 --- a/src/content/meta/shared-installation.md +++ /dev/null @@ -1,83 +0,0 @@ ---- -linkTitle: Shared installations -title: Getting started on a shared installation -description: Giant Swarm customers usually work with their own installation(s). However, our product also provide shared installations for trials and proof of concept (PoC) projects. This article explains the differences and what to do as a customer to get started on a shared installation. -weight: 100 -user_questions: - - How is a shared installation different from normal Giant Swarm installations? - - What do I have to do to use a shared installation? -owner: - - https://github.com/orgs/giantswarm/teams/sig-docs -last_review_date: 2024-11-26 -aliases: - - /support/shared-installation - - /getting-started/shared-installation/ ---- - -Giant Swarm customers usually work with their own installation. However, our product support shared installations for trials and proof of concept (PoC) projects. This article explains the differences and what to do as a customer to get started on a shared installation. - -## Differences - -### Cloud provider account - -Shared installations are available both on AWS and Azure. While the use of the term _account_ is used across this article on Azure the according concept is called a _subscription_. - -A Giant Swarm installation normally is used by only one customer. Both management cluster and workload clusters run in cloud provider account owned by the customer. - -In a shared installation, the management cluster runs in an account owned by Giant Swarm. The workload clusters however are created using the customer's account. - -Find instructions regarding the setup below. - -### Organizations - -In a normal Giant Swarm installation, [organizations]({{< relref "/overview/fleet-management/multi-tenancy" >}}) are used to isolate different concerns, teams, business units from each other. Admin users can create as many organizations as they need and use the organization's namespace in the management clusters and role-based access control (RBAC) to control access to these resources. - -In a shared installation, each customer is mapped to exactly one organization. You can't create additional organizations. - -### Access control - -For normal Giant Swarm installations, the customer can decide which identity provider to use for [authentication]({{< relref "/overview/architecture/authentication" >}}) to the Management API. - -In a shared installation, all customers use `GitHub` as an identity provider and configure a team in a `GitHub` organization to include all the users who need access to the Giant Swarm Management API and user interfaces. Find instructions regarding the setup of your organization and team below. - -### Observability - -A shared installation is monitored and managed by Giant Swarm staff, just like any other installation. However, currently prospects don't provide access to our standard [observability features]({{< relref "/overview/observability" >}}) in a shared installation. - -## Getting started - -### Kick-off - -Together, you and Giant Swarm agree on a project. You have an account engineer at Giant Swarm responsible for you. - -### Pick an organization name - -It's up to you to decide for an organization name that represents you as a company, business unit, or team. Please take our [naming conventions]({{< relref "/overview/fleet-management/multi-tenancy#naming-conventions" >}}) into account. - -### Prepare a cloud provider account - -To create and manage workload clusters on your behalf, our team ask you to prepare some configuration, roles, and quotas in your cloud provider account. - -Find our detailed guides both for [AWS]({{< relref "/getting-started/prepare-your-provider-infrastructure/aws" >}}) and [Azure]({{< relref "/getting-started/prepare-your-provider-infrastructure/azure" >}}). Note **the account is only needed for the workload clusters**, but not for a management cluster in the case of a shared installation. - -When done, hand the account information to your Account Engineer at Giant Swarm. - -### Create your GitHub team - -For access management, a shared installation uses `GitHub` as an identity provider. All members who need access to Giant Swarm resources, via the platform API or the user interfaces, must be a member of the same `GitHub` team. - -To create a team, follow these steps: - -1. Log in at [`GitHub`](https://github.com/). -2. If a `GitHub` organization doesn't yet exist: - - Click the `+` link in the top right. - - Select `New organization`. - - Fill in the name and additional details -3. Go to the organization's teams list at `https://github.com/orgs//teams`. -4. Select a team, or create a new one. -5. Make sure the team has the expected members at `https://github.com/orgs//teams//members`. -6. Copy the details address of the team, like `https://github.com/orgs//teams/`, and hand it to your account engineer at Giant Swarm. - -### Let us take care of the rest - -Once you have gone through the steps outlined above, let us set up your organization in the selected shared installation. In just a moment, you will have access to our API and other interfaces start your first clusters or deploy first applications. diff --git a/src/content/overview/developer-portal/_index.md b/src/content/overview/developer-portal/index.md similarity index 97% rename from src/content/overview/developer-portal/_index.md rename to src/content/overview/developer-portal/index.md index ce80c83de0..ffb5570e03 100644 --- a/src/content/overview/developer-portal/_index.md +++ b/src/content/overview/developer-portal/index.md @@ -9,6 +9,9 @@ menu: last_review_date: 2024-07-01 owner: - https://github.com/orgs/giantswarm/teams/team-honeybadger +user_questions: + - What is the developer portal? + - What is Backstage? --- Our developer portal based on [Backstage](https://www.cncf.io/projects/backstage/) is your engineer's front end to the platform. We provide our self-service user interface as plugins for Backstage, so that engineers using your platform find all the information they need in the place they visit frequently. diff --git a/src/content/reference/platform-api/cluster-apps/_index.md b/src/content/reference/platform-api/cluster-apps/_index.md index b93eb8c5f8..45c68dab3a 100644 --- a/src/content/reference/platform-api/cluster-apps/_index.md +++ b/src/content/reference/platform-api/cluster-apps/_index.md @@ -1,7 +1,7 @@ --- linkTitle: Cluster app charts title: Cluster app charts -description: These charts are used to provision clusters in the Giant Swarm platform (here, even clusters are apps, in a way). +description: These charts are used to provision clusters in the Giant Swarm platform (here, even clusters are apps, in a way). weight: 100 menu: principal: diff --git a/src/content/reference/platform-api/cluster-apps/default-apps-aws.md b/src/content/reference/platform-api/cluster-apps/default-apps-aws.md deleted file mode 100644 index a4f8100144..0000000000 --- a/src/content/reference/platform-api/cluster-apps/default-apps-aws.md +++ /dev/null @@ -1,2920 +0,0 @@ ---- -title: default-apps-aws chart reference -linkTitle: default-apps-aws -description: A Helm chart for default-apps-aws; Check here the different properties of the chart. -weight: 100 -menu: - principal: - identifier: default-apps-aws - parent: reference-cluster-apps -layout: cluster-app -user_questions: - - What properties can I configure for default-apps-aws? -owner: -- https://github.com/orgs/giantswarm/teams/team-phoenix -source_repository: https://github.com/giantswarm/default-apps-aws -source_repository_ref: v0.48.0 ---- - -The `default-apps-aws` chart templates all the components required for a Cluster API AWS cluster like External DNS or CoreDNS. - -
- - -
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
array  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
null  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
array  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
array  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
array  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
- -
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
array  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
- -
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
- - - -## Further reading - -- [Source repository](https://github.com/giantswarm/default-apps-aws) diff --git a/src/content/reference/platform-api/cluster-apps/default-apps-azure.md b/src/content/reference/platform-api/cluster-apps/default-apps-azure.md deleted file mode 100644 index b34448c485..0000000000 --- a/src/content/reference/platform-api/cluster-apps/default-apps-azure.md +++ /dev/null @@ -1,1698 +0,0 @@ ---- -title: default-apps-azure chart reference -linkTitle: default-apps-azure -description: A Helm chart defining the preinstalled apps running in all Giant Swarm Azure clusters.; Check here the different properties of the chart. -weight: 100 -menu: - principal: - identifier: default-apps-azure - parent: reference-cluster-apps -layout: cluster-app -user_questions: - - What properties can I configure for default-apps-azure? -owner: -- https://github.com/orgs/giantswarm/teams/team-phoenix -source_repository: https://github.com/giantswarm/default-apps-azure -source_repository_ref: v0.8.3 ---- - -The `default-apps-azure` chart templates all the components required for a Cluster API Azure cluster like External DNS or CoreDNS. - -
- - -
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
- -
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
array  -
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
- -
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
- - - -## Further reading - -- [Source repository](https://github.com/giantswarm/default-apps-azure) diff --git a/src/content/reference/platform-api/cluster-apps/default-apps-cloud-director.md b/src/content/reference/platform-api/cluster-apps/default-apps-cloud-director.md deleted file mode 100644 index 9cc3e28db2..0000000000 --- a/src/content/reference/platform-api/cluster-apps/default-apps-cloud-director.md +++ /dev/null @@ -1,1984 +0,0 @@ ---- -title: default-apps-cloud-director chart reference -linkTitle: default-apps-cloud-director -description: A Helm chart which defines the pre-installed apps in all Giant Swarm Cloud Director (VCD) clusters; Check here the different properties of the chart. -weight: 100 -menu: - principal: - identifier: default-apps-cloud-director - parent: reference-cluster-apps -layout: cluster-app -user_questions: - - What properties can I configure for default-apps-cloud-director? -owner: -- https://github.com/orgs/giantswarm/teams/team-rocket -source_repository: https://github.com/giantswarm/default-apps-cloud-director -source_repository_ref: v0.7.3 ---- - -The `default-apps-cloud-director` chart templates all the components required for a Cluster API VMware cluster like External DNS or CoreDNS. - -
- - -
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
array  -
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
array  -
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
array  -
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
array  -
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
array  -
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
array  -
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
array  -
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
array  -
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
boolean  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
- -
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object, string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object, string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object, string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object, string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object, string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object, string  -
-
-
-
- -
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
-
-
- -
-
-
string  -
-
-
-
- - - -## Further reading - -- [Source repository](https://github.com/giantswarm/default-apps-cloud-director) diff --git a/src/content/reference/platform-api/cluster-apps/default-apps-eks.md b/src/content/reference/platform-api/cluster-apps/default-apps-eks.md index d953708583..ec24d3e2c2 100644 --- a/src/content/reference/platform-api/cluster-apps/default-apps-eks.md +++ b/src/content/reference/platform-api/cluster-apps/default-apps-eks.md @@ -29,6 +29,167 @@ The `default-apps-eks` chart templates all the components required for a Cluster +
+
+ +
+
+
object  +
+
+
+
+
+
+ +
+
+
object  +
+
+
+
+
+
+ +
+
+
object, string  +
+
+
+
+
+
+ +
+
+
object  +
+
+
+
+
+
+ +
+
+
object  +
+
+
+
+
+
+ +
+
+
object, string  +
+
+
+
+
+
+ +
+
+
object  +
+
+
+
+
+
+ +
+
+
object  +
+
+
+
+
+
+ +
+
+
object, string  +
+
+
+
+
+
+ +
+
+
object  +
+
+
+
+
+
+ +
+
+
object  +
+
+
+
+
+
+ +
+
+
object, string  +
+
+
+
+
- -
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object, string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object, string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object, string  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object  -
-
-
-
-
-
- -
-
-
object, string  -
-
-
-