Skip to content

Commit

Permalink
fix: default value false for createClusterRole (#556)
Browse files Browse the repository at this point in the history
<!--Thanks for your contribution. See [CONTRIBUTING](CONTRIBUTING.md)
    for Pulumi's contribution guidelines.

    Help us merge your changes more quickly by adding more details such
    as labels, milestones, and reviewers.-->

### Proposed changes

<!--Give us a brief description of what you've done and what it solves.
-->

### Related issues (optional)

<!--Refer to related PRs or issues: #1234, or 'Fixes #1234' or 'Closes
#1234'.
Or link to full URLs to issues or pull requests in other GitHub
repositories. -->
  • Loading branch information
dirien authored Mar 6, 2024
1 parent e7a2bb4 commit f98e3f6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions deploy/helm/pulumi-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ icon: https://www.pulumi.com/logos/brand/avatar-on-white.svg

type: application


version: 0.7.0
version: 0.7.1
appVersion: 1.14.0

keywords:
Expand Down
2 changes: 1 addition & 1 deletion deploy/helm/pulumi-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ The command removes all the Kubernetes components associated with the chart and
| controller.kubernetesClusterDomain | string | `"cluster.local"` | Kubernetes Cluster Domain, default: `cluster.local` |
| controller.maxConcurrentReconciles | string | `"10"` | Max concurrent reconciles, default: `10` |
| controller.pulumiInferNamespace | string | `"1"` | Pulumi infer namespace, default: `1` |
| createClusterRole | bool | `true` | Create a ClusterRole resource for the node-red pod. default: false |
| createClusterRole | bool | `false` | Create a ClusterRole resource for the node-red pod. default: false |
| deploymentAnnotations | object | `{}` | Deployment annotations |
| deploymentStrategy | string | `""` | Specifies the strategy used to replace old Pods by new ones, default: `RollingUpdate` |
| extraEnv | list | `[]` | Extra Environments to be passed to the operator |
Expand Down
2 changes: 1 addition & 1 deletion deploy/helm/pulumi-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ controller:
extraEnv: []

# -- Create a ClusterRole resource for the node-red pod. default: false
createClusterRole: true
createClusterRole: false

## -- Enable this and set the rules: to whatever custom rules you want for the Cluster Role resource.
clusterRoleRules:
Expand Down

0 comments on commit f98e3f6

Please sign in to comment.