Skip to content

Commit

Permalink
Fix Description Propagation (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
spjmurray authored Jun 3, 2024
1 parent eb6d678 commit 0c75e51
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/core/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: A Helm chart for deploying Unikorn Core

type: application

version: v0.1.36
appVersion: v0.1.36
version: v0.1.37
appVersion: v0.1.37

icon: https://assets.unikorn-cloud.org/images/logos/dark-on-light/icon.svg
2 changes: 2 additions & 0 deletions pkg/server/conversion/conversion.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ func OrganizationScopedResourceReadMetadata(in metav1.Object, status openapi.Res
out := openapi.OrganizationScopedResourceReadMetadata{
Id: temp.Id,
Name: temp.Name,
Description: temp.Description,
CreationTime: temp.CreationTime,
ProvisioningStatus: temp.ProvisioningStatus,
OrganizationId: labels[constants.OrganizationLabel],
Expand All @@ -95,6 +96,7 @@ func ProjectScopedResourceReadMetadata(in metav1.Object, status openapi.Resource
out := openapi.ProjectScopedResourceReadMetadata{
Id: temp.Id,
Name: temp.Name,
Description: temp.Description,
CreationTime: temp.CreationTime,
ProvisioningStatus: temp.ProvisioningStatus,
OrganizationId: temp.OrganizationId,
Expand Down

0 comments on commit 0c75e51

Please sign in to comment.