Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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: caradu@adobe.com

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