Rectify the aws driver name to awsirsa (#994)

Signed-off-by: Jian Qiu <jqiu@redhat.com>
This commit is contained in:
Jian Qiu
2025-05-16 12:15:55 +00:00
committed by GitHub
parent 57c78cd4de
commit a36a0bdb52
11 changed files with 17 additions and 17 deletions
@@ -269,8 +269,8 @@ spec:
- csr
- awsirsa
type: string
awsisra:
description: AwsIrsa represents the configuration for awsisra
awsirsa:
description: AwsIrsa represents the configuration for awsirsa
driver.
properties:
autoApprovedIdentities:
@@ -269,8 +269,8 @@ spec:
- csr
- awsirsa
type: string
awsisra:
description: AwsIrsa represents the configuration for awsisra
awsirsa:
description: AwsIrsa represents the configuration for awsirsa
driver.
properties:
autoApprovedIdentities:
@@ -59,7 +59,7 @@ metadata:
categories: Integration & Delivery,OpenShift Optional
certified: "false"
containerImage: quay.io/open-cluster-management/registration-operator:latest
createdAt: "2025-03-05T16:39:23Z"
createdAt: "2025-05-16T00:58:20Z"
description: Manages the installation and upgrade of the ClusterManager.
operators.operatorframework.io/builder: operator-sdk-v1.32.0
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
@@ -269,8 +269,8 @@ spec:
- csr
- awsirsa
type: string
awsisra:
description: AwsIrsa represents the configuration for awsisra
awsirsa:
description: AwsIrsa represents the configuration for awsirsa
driver.
properties:
autoApprovedIdentities:
@@ -31,7 +31,7 @@ metadata:
categories: Integration & Delivery,OpenShift Optional
certified: "false"
containerImage: quay.io/open-cluster-management/registration-operator:latest
createdAt: "2025-03-05T16:39:23Z"
createdAt: "2025-05-16T00:58:20Z"
description: Manages the installation and upgrade of the Klusterlet.
operators.operatorframework.io/builder: operator-sdk-v1.32.0
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
+1 -1
View File
@@ -36,7 +36,7 @@ require (
k8s.io/kube-aggregator v0.31.4
k8s.io/utils v0.0.0-20240921022957-49e7df575cb6
open-cluster-management.io/addon-framework v0.12.0
open-cluster-management.io/api v0.16.1
open-cluster-management.io/api v0.16.2
open-cluster-management.io/sdk-go v0.16.0
sigs.k8s.io/cluster-inventory-api v0.0.0-20240730014211-ef0154379848
sigs.k8s.io/controller-runtime v0.19.3
+2 -2
View File
@@ -489,8 +489,8 @@ k8s.io/utils v0.0.0-20240921022957-49e7df575cb6 h1:MDF6h2H/h4tbzmtIKTuctcwZmY0tY
k8s.io/utils v0.0.0-20240921022957-49e7df575cb6/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
open-cluster-management.io/addon-framework v0.12.0 h1:5j7mpyk2ij0SLUZkwWk0KkNTWtsid2w7BIHmhm0Ecok=
open-cluster-management.io/addon-framework v0.12.0/go.mod h1:eReMWXrEHqtilwz5wzEpUrWw9Vfz0HJCH9pi3gOTZns=
open-cluster-management.io/api v0.16.1 h1:mS+4UGxHLPQd7CRM0gdFQdVaz139Lo2bkLfqSE0CDNU=
open-cluster-management.io/api v0.16.1/go.mod h1:9erZEWEn4bEqh0nIX2wA7f/s3KCuFycQdBrPrRzi0QM=
open-cluster-management.io/api v0.16.2 h1:JzpJtgp/qJKjDLEO7o7q5eVLxYkfgxhtagJvWFbaNno=
open-cluster-management.io/api v0.16.2/go.mod h1:9erZEWEn4bEqh0nIX2wA7f/s3KCuFycQdBrPrRzi0QM=
open-cluster-management.io/sdk-go v0.16.0 h1:Ui1jerkeLaNaJPu47xjOJ3lh+rJQgeJHD25ViQMzAMs=
open-cluster-management.io/sdk-go v0.16.0/go.mod h1:TyOjZC5YxyM5BRNgwTmLuTbHXX6xXqzYBXllrfoVp9w=
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.30.3 h1:2770sDpzrjjsAtVhSeUFseziht227YAWYHLGNM8QPwY=
+1 -1
View File
@@ -1708,7 +1708,7 @@ open-cluster-management.io/addon-framework/pkg/agent
open-cluster-management.io/addon-framework/pkg/assets
open-cluster-management.io/addon-framework/pkg/index
open-cluster-management.io/addon-framework/pkg/utils
# open-cluster-management.io/api v0.16.1
# open-cluster-management.io/api v0.16.2
## explicit; go 1.22.0
open-cluster-management.io/api/addon/v1alpha1
open-cluster-management.io/api/client/addon/clientset/versioned
@@ -269,8 +269,8 @@ spec:
- csr
- awsirsa
type: string
awsisra:
description: AwsIrsa represents the configuration for awsisra
awsirsa:
description: AwsIrsa represents the configuration for awsirsa
driver.
properties:
autoApprovedIdentities:
+2 -2
View File
@@ -129,9 +129,9 @@ type RegistrationDriverHub struct {
// +optional
CSR *CSRConfig `json:"csr,omitempty"`
// AwsIrsa represents the configuration for awsisra driver.
// AwsIrsa represents the configuration for awsirsa driver.
// +optional
AwsIrsa *AwsIrsaConfig `json:"awsisra,omitempty"`
AwsIrsa *AwsIrsaConfig `json:"awsirsa,omitempty"`
}
type CSRConfig struct {
@@ -143,7 +143,7 @@ func (NodePlacement) SwaggerDoc() map[string]string {
var map_RegistrationDriverHub = map[string]string{
"authType": "Type of the authentication used by hub to initialize the Hub cluster. Possible values are csr and awsirsa.",
"csr": "CSR represents the configuration for csr driver.",
"awsisra": "AwsIrsa represents the configuration for awsisra driver.",
"awsirsa": "AwsIrsa represents the configuration for awsirsa driver.",
}
func (RegistrationDriverHub) SwaggerDoc() map[string]string {