From 16000b0d79f359588756ba00be3dec3a37bbc6aa Mon Sep 17 00:00:00 2001 From: Tibi <110664232+TiberiuGC@users.noreply.github.com> Date: Thu, 7 Dec 2023 11:35:08 +0200 Subject: [PATCH] Update reference for bottlerocket settings (#7375) * Implement updating and deleting pod identity associations (#7315) * Implement `update podidentityassociation` * Implement `delete podidentityassociation` * change create task order * add integration test * delete IAM role stacks on cluster deletion * move validations from cluster config level to command config level * avoid duplicating stack deletion tasks due to passing name by reference * fix integration tests * add eksctl prefix to integrationt test IAM roles * make IAM roles trust the production EKS Service Principal --------- Co-authored-by: Tibi <110664232+TiberiuGC@users.noreply.github.com> * Add documentation for pod identity associations feature (#7313) * Add documentation for pod identity associations * add more details to how pod identity agent addon works * remove unnecessary empty lines * refactor as per PR suggestions * add references to official AWS docs * generate docs * rephrase intro Co-authored-by: Himangini * rephrase news section Co-authored-by: Himangini * add newline between docs links --------- Co-authored-by: Himangini * update bottlerocket settings reference --------- Co-authored-by: Chetan Patwal Co-authored-by: Himangini --- pkg/apis/eksctl.io/v1alpha5/assets/schema.json | 4 ++-- pkg/apis/eksctl.io/v1alpha5/types.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/apis/eksctl.io/v1alpha5/assets/schema.json b/pkg/apis/eksctl.io/v1alpha5/assets/schema.json index 9af02753c7..6d282f647b 100755 --- a/pkg/apis/eksctl.io/v1alpha5/assets/schema.json +++ b/pkg/apis/eksctl.io/v1alpha5/assets/schema.json @@ -1776,8 +1776,8 @@ }, "settings": { "$ref": "#/definitions/InlineDocument", - "description": "contains any [bottlerocket settings](https://github.com/bottlerocket-os/bottlerocket/#description-of-settings)", - "x-intellij-html-description": "contains any bottlerocket settings" + "description": "contains any [bottlerocket settings](https://bottlerocket.dev/en/os/latest/#/api/settings/)", + "x-intellij-html-description": "contains any bottlerocket settings" } }, "preferredOrder": [ diff --git a/pkg/apis/eksctl.io/v1alpha5/types.go b/pkg/apis/eksctl.io/v1alpha5/types.go index c80e1bb576..33a2d85d47 100644 --- a/pkg/apis/eksctl.io/v1alpha5/types.go +++ b/pkg/apis/eksctl.io/v1alpha5/types.go @@ -1444,7 +1444,7 @@ type ( // +optional EnableAdminContainer *bool `json:"enableAdminContainer,omitempty"` // Settings contains any [bottlerocket - // settings](https://github.com/bottlerocket-os/bottlerocket/#description-of-settings) + // settings](https://bottlerocket.dev/en/os/latest/#/api/settings/) // +optional Settings *InlineDocument `json:"settings,omitempty"` }