Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pr1680 #2819

Merged
merged 3 commits into from
Apr 5, 2024
Merged

Pr1680 #2819

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
2 changes: 1 addition & 1 deletion apis/v1alpha1/opentelemetrycollector_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ type OpenTelemetryCollectorSpec struct {
// ImagePullPolicy indicates the pull policy to be used for retrieving the container image (Always, Never, IfNotPresent)
// +optional
ImagePullPolicy v1.PullPolicy `json:"imagePullPolicy,omitempty"`
// Config is the raw JSON to be used as the collector's configuration. Refer to the OpenTelemetry Collector documentation for details.
// Config is the raw YAML to be used as the collector's configuration. Refer to the OpenTelemetry Collector documentation for details.
// +required
Config string `json:"config,omitempty"`
// VolumeMounts represents the mount points to use in the underlying collector deployment(s)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2239,7 +2239,7 @@ spec:
type: integer
type: object
config:
description: Config is the raw JSON to be used as the collector's
description: Config is the raw YAML to be used as the collector's
configuration. Refer to the OpenTelemetry Collector documentation
for details.
type: string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2236,7 +2236,7 @@ spec:
type: integer
type: object
config:
description: Config is the raw JSON to be used as the collector's
description: Config is the raw YAML to be used as the collector's
configuration. Refer to the OpenTelemetry Collector documentation
for details.
type: string
Expand Down
2 changes: 1 addition & 1 deletion docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -10312,7 +10312,7 @@ for the OpenTelemetryCollector workload.<br/>
<td><b>config</b></td>
<td>string</td>
<td>
Config is the raw JSON to be used as the collector's configuration. Refer to the OpenTelemetry Collector documentation for details.<br/>
Config is the raw YAML to be used as the collector's configuration. Refer to the OpenTelemetry Collector documentation for details.<br/>
</td>
<td>false</td>
</tr><tr>
Expand Down
Loading