Skip to content

Commit

Permalink
Handle line breaks for Backend examples
Browse files Browse the repository at this point in the history
  • Loading branch information
viveklak committed Oct 2, 2021
1 parent 4453725 commit 4efd7bb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion deploy/crds/pulumi.com_stacks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spec:
description: '(optional) AccessTokenSecret is the name of a secret containing the PULUMI_ACCESS_TOKEN for Pulumi access. Deprecated: use EnvRefs with a "secret" entry with the key PULUMI_ACCESS_KEY instead.'
type: string
backend:
description: '(optional) Backend is an optional backend URL to use for all Pulumi operations. Examples: - Pulumi Service: "https://app.pulumi.com" (default) - Self-managed Pulumi Service: "https://pulumi.acmecorp.com" - Local: "file://./einstein" - AWS: "s3://<my-pulumi-state-bucket>" - Azure: "azblob://<my-pulumi-state-bucket>" - GCP: "gs://<my-pulumi-state-bucket>" See: https://www.pulumi.com/docs/intro/concepts/state/'
description: '(optional) Backend is an optional backend URL to use for all Pulumi operations.<br/> Examples:<br/> - Pulumi Service: "https://app.pulumi.com" (default)<br/> - Self-managed Pulumi Service: "https://pulumi.acmecorp.com" <br/> - Local: "file://./einstein" <br/> - AWS: "s3://<my-pulumi-state-bucket>" <br/> - Azure: "azblob://<my-pulumi-state-bucket>" <br/> - GCP: "gs://<my-pulumi-state-bucket>" <br/> See: https://www.pulumi.com/docs/intro/concepts/state/'
type: string
branch:
description: (optional) Branch is the branch name to deploy, either the simple or fully qualified ref name, e.g. refs/heads/master. This is mutually exclusive with the Commit setting. Either value needs to be specified.
Expand Down
2 changes: 1 addition & 1 deletion docs/stacks.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ StackSpec defines the desired state of Pulumi Stack being managed by this operat
<td><b>backend</b></td>
<td>string</td>
<td>
(optional) Backend is an optional backend URL to use for all Pulumi operations. Examples: - Pulumi Service: "https://app.pulumi.com" (default) - Self-managed Pulumi Service: "https://pulumi.acmecorp.com" - Local: "file://./einstein" - AWS: "s3://<my-pulumi-state-bucket>" - Azure: "azblob://<my-pulumi-state-bucket>" - GCP: "gs://<my-pulumi-state-bucket>" See: https://www.pulumi.com/docs/intro/concepts/state/<br/>
(optional) Backend is an optional backend URL to use for all Pulumi operations.<br/> Examples:<br/> - Pulumi Service: "https://app.pulumi.com" (default)<br/> - Self-managed Pulumi Service: "https://pulumi.acmecorp.com" <br/> - Local: "file://./einstein" <br/> - AWS: "s3://<my-pulumi-state-bucket>" <br/> - Azure: "azblob://<my-pulumi-state-bucket>" <br/> - GCP: "gs://<my-pulumi-state-bucket>" <br/> See: https://www.pulumi.com/docs/intro/concepts/state/<br/>
</td>
<td>false</td>
</tr><tr>
Expand Down
16 changes: 8 additions & 8 deletions pkg/apis/pulumi/v1alpha1/stack_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ type StackSpec struct {
// Deprecated: use EnvRefs instead.
SecretEnvs []string `json:"envSecrets,omitempty"`

// (optional) Backend is an optional backend URL to use for all Pulumi operations.
// Examples:
// - Pulumi Service: "https://app.pulumi.com" (default)
// - Self-managed Pulumi Service: "https://pulumi.acmecorp.com"
// - Local: "file://./einstein"
// - AWS: "s3://<my-pulumi-state-bucket>"
// - Azure: "azblob://<my-pulumi-state-bucket>"
// - GCP: "gs://<my-pulumi-state-bucket>"
// (optional) Backend is an optional backend URL to use for all Pulumi operations.<br/>
// Examples:<br/>
// - Pulumi Service: "https://app.pulumi.com" (default)<br/>
// - Self-managed Pulumi Service: "https://pulumi.acmecorp.com" <br/>
// - Local: "file://./einstein" <br/>
// - AWS: "s3://<my-pulumi-state-bucket>" <br/>
// - Azure: "azblob://<my-pulumi-state-bucket>" <br/>
// - GCP: "gs://<my-pulumi-state-bucket>" <br/>
// See: https://www.pulumi.com/docs/intro/concepts/state/
Backend string `json:"backend,omitempty"`

Expand Down

0 comments on commit 4efd7bb

Please sign in to comment.