Skip to content

Commit

Permalink
bump OTEL operator version to v0.37.0 (open-telemetry#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesJHPark authored Oct 29, 2021
1 parent 3f17244 commit 8beca7c
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/opentelemetry-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: opentelemetry-operator
version: 0.3.2
version: 0.4.0
description: OpenTelemetry Operator Helm chart for Kubernetes
type: application
home: https://opentelemetry.io/
Expand All @@ -15,4 +15,4 @@ maintainers:
- name: alolita
- name: Aneurysm9
icon: https://raw.githubusercontent.com/cncf/artwork/a718fa97fffec1b9fd14147682e9e3ac0c8817cb/projects/opentelemetry/icon/color/opentelemetry-icon-color.png
appVersion: 0.33.0
appVersion: 0.37.0
38 changes: 38 additions & 0 deletions charts/opentelemetry-operator/crds/crd-opentelemetrycollector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -146,12 +146,45 @@ spec:
- name
type: object
type: array
envFrom:
description: List of sources to populate environment variables on the OpenTelemetry Collector's Pods. These can then in certain cases be consumed in the config file for the Collector.
items:
description: EnvFromSource represents the source of a set of ConfigMaps
properties:
configMapRef:
description: The ConfigMap to select from
properties:
name:
description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?'
type: string
optional:
description: Specify whether the ConfigMap must be defined
type: boolean
type: object
prefix:
description: An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.
type: string
secretRef:
description: The Secret to select from
properties:
name:
description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?'
type: string
optional:
description: Specify whether the Secret must be defined
type: boolean
type: object
type: object
type: array
hostNetwork:
description: HostNetwork indicates if the pod should run in the host networking namespace.
type: boolean
image:
description: Image indicates the container image to use for the OpenTelemetry Collector.
type: string
imagePullPolicy:
description: ImagePullPolicy indicates the pull policy to be used for retrieving the container image (Always, Never, IfNotPresent)
type: string
mode:
description: Mode represents how the collector should be deployed (deployment, daemonset, statefulset or sidecar)
enum:
Expand All @@ -160,6 +193,11 @@ spec:
- sidecar
- statefulset
type: string
podAnnotations:
additionalProperties:
type: string
description: PodAnnotations is the set of annotations that will be attached to Collector and Target Allocator pods.
type: object
ports:
description: Ports allows a set of ports to be exposed by the underlying v1.Service. By default, the operator will attempt to infer the required ports by parsing the .Spec.Config property but this property can be used to open aditional ports that can't be inferred by the operator, like for custom receivers.
items:
Expand Down
2 changes: 1 addition & 1 deletion charts/opentelemetry-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ createNamespace: true
manager:
image:
repository: quay.io/opentelemetry/opentelemetry-operator
tag: v0.33.0
tag: v0.37.0
resources:
limits:
cpu: 100m
Expand Down

0 comments on commit 8beca7c

Please sign in to comment.