Skip to content

Commit

Permalink
add namespaceProfileInfraType field (#130)
Browse files Browse the repository at this point in the history
* add namespaceProfileInfraType field

* update changelog :-)

---------

Co-authored-by: Victor Varza <[email protected]>
  • Loading branch information
victorvarza and Victor Varza authored Apr 8, 2024
1 parent 2054b18 commit 1a34d41
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# 1.5.5

## cluster-registry-api

- Add NamespaceProfileInfraType field (#130)

## cluster-registry-client

- Add NamespaceProfileInfraType field (#130)

# 1.5.4

## cluster-registry-api
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.4
1.5.5
2 changes: 1 addition & 1 deletion charts/cluster-registry-client/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ maintainers:
email: [email protected]

version: 0.2.3
appVersion: v1.5.4
appVersion: v1.5.5
4 changes: 4 additions & 0 deletions config/crd/bases/registry.ethos.adobe.com_clusters.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
Expand Down Expand Up @@ -157,6 +158,9 @@ spec:
type: string
type: object
type: array
namespaceProfileInfraType:
description: Namespace Profile Infrastructure Type
type: string
nfsInfo:
description: NFS information
items:
Expand Down
3 changes: 3 additions & 0 deletions pkg/api/registry/v1/cluster_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,9 @@ type Extra struct {

// OIDC Issuer URL
OidcIssuer string `json:"oidcIssuer,omitempty"`

// Namespace Profile Infrastructure Type
NamespaceProfileInfraType string `json:"namespaceProfileInfraType,omitempty"`
}

// Tier details
Expand Down
4 changes: 4 additions & 0 deletions pkg/apiserver/docs/docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -700,6 +700,10 @@ const docTemplate = `{
}
}
},
"namespaceProfileInfraType": {
"description": "Namespace Profile Infrastructure Type",
"type": "string"
},
"nfsInfo": {
"description": "NFS information",
"type": "array",
Expand Down
4 changes: 4 additions & 0 deletions pkg/apiserver/docs/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -698,6 +698,10 @@
}
}
},
"namespaceProfileInfraType": {
"description": "Namespace Profile Infrastructure Type",
"type": "string"
},
"nfsInfo": {
"description": "NFS information",
"type": "array",
Expand Down
3 changes: 3 additions & 0 deletions pkg/apiserver/docs/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,9 @@ definitions:
type: string
type: object
type: array
namespaceProfileInfraType:
description: Profile Infrastructure Type
type: string
nfsInfo:
description: NFS information
items:
Expand Down

0 comments on commit 1a34d41

Please sign in to comment.