Skip to content
This repository has been archived by the owner on Oct 20, 2022. It is now read-only.

Commit

Permalink
Hotfix description (#163)
Browse files Browse the repository at this point in the history
* fix operator metrics configuration

* append changelog

* fix optinal parameter context and support empty array for parameter context

* bump version and append changelog

* updgrade dependency

* bump version

* add sensitive field for parameter type

* support empty value update

* append changelog & bump version

* append changelog & bump version

* fix test

* fix description requirement

* move helm chart bucket location
  • Loading branch information
erdrix authored Nov 23, 2021
1 parent 819a2d3 commit 65671ad
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ orbs:
if [[ $(echo "$CIRCLE_BRANCH" | grep -c "pull") -gt 0 ]]; then
echo "This is a PR, we don't publish to helm repo."
else
CHART_VERSION=$(cat helm/nifikop/Chart.yaml| grep version | awk -F"version: " '{print $2}') GCP_SA_CREDS=${GCP_POC_RTC_SA_KEY} /home/circleci/nifikop/tools/publish_helm_gcs.sh
CHART_VERSION=$(cat helm/nifikop/Chart.yaml| grep version | awk -F"version: " '{print $2}') GCP_SA_CREDS=${GCP_SQUIDFLOW_SBX_SA_KEY} /home/circleci/nifikop/tools/publish_helm_gcs.sh
fi
jobs:
deploy-website:
Expand Down
2 changes: 1 addition & 1 deletion api/v1alpha1/nifiparametercontext_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ type Parameter struct {
// the value of the Parameter.
Value *string `json:"value,omitempty"`
// the description of the Parameter.
Description string `json:"description,omitempty"`
Description string `json:"description"`
// Whether the parameter is sensitive or not.
Sensitive bool `json:"sensitive,omitempty"`
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ spec:
description: the value of the Parameter.
type: string
required:
- description
- name
type: object
type: array
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ spec:
description: the value of the Parameter.
type: string
required:
- description
- name
type: object
type: array
Expand Down

0 comments on commit 65671ad

Please sign in to comment.