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

Fix truncated descriptions in the CRDs #2563

Merged
merged 12 commits into from
Apr 11, 2024
16 changes: 16 additions & 0 deletions .chloggen/fix-truncated-description-crd.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
change_type: bug_fix

# The name of the component, or a single word describing the area of concern, (e.g. operator, target allocator, github action)
component: operator, instrumentation, opamp bridge

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: The description for some fields was truncated in the CRDs

# One or more tracking issues related to the change
issues: [2563]

# (Optional) One or more lines of additional information to render under the primary note.
# These lines will be padded with 2 spaces and then inserted directly into the document.
# Use pipe (|) for multiline entries.
subtext:
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ BUNDLE_DEFAULT_CHANNEL := --default-channel=$(DEFAULT_CHANNEL)
endif
BUNDLE_METADATA_OPTS ?= $(BUNDLE_CHANNELS) $(BUNDLE_DEFAULT_CHANNEL)

CRD_OPTIONS ?= "crd:generateEmbeddedObjectMeta=true,maxDescLen=200"
CRD_OPTIONS ?= "crd:generateEmbeddedObjectMeta=true,maxDescLen=500"

# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
ifeq (,$(shell go env GOBIN))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ metadata:
categories: Logging & Tracing,Monitoring
certified: "false"
containerImage: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator
createdAt: "2024-01-17T19:30:53Z"
createdAt: "2024-01-24T21:59:35Z"
description: Provides the OpenTelemetry components, including the Collector
operators.operatorframework.io/builder: operator-sdk-v1.29.0
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
Expand Down
288 changes: 212 additions & 76 deletions bundle/manifests/opentelemetry.io_instrumentations.yaml

Large diffs are not rendered by default.

822 changes: 669 additions & 153 deletions bundle/manifests/opentelemetry.io_opampbridges.yaml

Large diffs are not rendered by default.

2,196 changes: 1,767 additions & 429 deletions bundle/manifests/opentelemetry.io_opentelemetrycollectors.yaml

Large diffs are not rendered by default.

288 changes: 212 additions & 76 deletions config/crd/bases/opentelemetry.io_instrumentations.yaml

Large diffs are not rendered by default.

822 changes: 669 additions & 153 deletions config/crd/bases/opentelemetry.io_opampbridges.yaml

Large diffs are not rendered by default.

2,196 changes: 1,767 additions & 429 deletions config/crd/bases/opentelemetry.io_opentelemetrycollectors.yaml

Large diffs are not rendered by default.

1,499 changes: 772 additions & 727 deletions docs/api.md

Large diffs are not rendered by default.

Loading