Skip to content

Commit 1a34d41

Browse files
victorvarzaVictor Varza
andauthored
add namespaceProfileInfraType field (#130)
* add namespaceProfileInfraType field * update changelog :-) --------- Co-authored-by: Victor Varza <[email protected]>
1 parent 2054b18 commit 1a34d41

File tree

8 files changed

+30
-2
lines changed

8 files changed

+30
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# 1.5.5
2+
3+
## cluster-registry-api
4+
5+
- Add NamespaceProfileInfraType field (#130)
6+
7+
## cluster-registry-client
8+
9+
- Add NamespaceProfileInfraType field (#130)
10+
111
# 1.5.4
212

313
## cluster-registry-api

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5.4
1+
1.5.5

charts/cluster-registry-client/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ maintainers:
1616
1717

1818
version: 0.2.3
19-
appVersion: v1.5.4
19+
appVersion: v1.5.5

config/crd/bases/registry.ethos.adobe.com_clusters.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
---
23
apiVersion: apiextensions.k8s.io/v1
34
kind: CustomResourceDefinition
@@ -157,6 +158,9 @@ spec:
157158
type: string
158159
type: object
159160
type: array
161+
namespaceProfileInfraType:
162+
description: Namespace Profile Infrastructure Type
163+
type: string
160164
nfsInfo:
161165
description: NFS information
162166
items:

pkg/api/registry/v1/cluster_types.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,9 @@ type Extra struct {
193193

194194
// OIDC Issuer URL
195195
OidcIssuer string `json:"oidcIssuer,omitempty"`
196+
197+
// Namespace Profile Infrastructure Type
198+
NamespaceProfileInfraType string `json:"namespaceProfileInfraType,omitempty"`
196199
}
197200

198201
// Tier details

pkg/apiserver/docs/docs.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -700,6 +700,10 @@ const docTemplate = `{
700700
}
701701
}
702702
},
703+
"namespaceProfileInfraType": {
704+
"description": "Namespace Profile Infrastructure Type",
705+
"type": "string"
706+
},
703707
"nfsInfo": {
704708
"description": "NFS information",
705709
"type": "array",

pkg/apiserver/docs/swagger.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -698,6 +698,10 @@
698698
}
699699
}
700700
},
701+
"namespaceProfileInfraType": {
702+
"description": "Namespace Profile Infrastructure Type",
703+
"type": "string"
704+
},
701705
"nfsInfo": {
702706
"description": "NFS information",
703707
"type": "array",

pkg/apiserver/docs/swagger.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,9 @@ definitions:
241241
type: string
242242
type: object
243243
type: array
244+
namespaceProfileInfraType:
245+
description: Profile Infrastructure Type
246+
type: string
244247
nfsInfo:
245248
description: NFS information
246249
items:

0 commit comments

Comments
 (0)