-
Notifications
You must be signed in to change notification settings - Fork 295
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
Update Changelog for Curated Packages Release #9368
Open
jhaanvi5
wants to merge
2
commits into
aws:main
Choose a base branch
from
jhaanvi5:update-changelog-packages
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
--- | ||
title: "v0.42.0" | ||
linkTitle: "v0.42.0" | ||
weight: 20 | ||
aliases: | ||
/docs/reference/packagespec/adot/v0.42.0/ | ||
description: > | ||
--- | ||
|
||
{{% pageinfo %}} | ||
The logging exporter is now [deprecated](https://github.com/open-telemetry/opentelemetry-collector/pull/11037) , users should update the config to the debug exporter instead | ||
|
||
{{% /pageinfo %}} | ||
|
||
### Configuring ADOT in EKS Anywhere package spec | ||
|
||
#### Example | ||
|
||
We included a sample configuration below for reference. For in-depth examples and use cases, please refer to [ADOT with AMP and AMG.]({{< relref "adot_amp_amg.md" >}}) | ||
|
||
``` | ||
apiVersion: packages.eks.amazonaws.com/v1alpha1 | ||
kind: Package | ||
metadata: | ||
name: my-adot | ||
namespace: eksa-packages-<cluster-name> | ||
spec: | ||
packageName: adot | ||
targetNamespace: observability | ||
config: | | ||
mode: daemonset | ||
``` | ||
|
||
#### Configurable parameters and default values under `spec.config` | ||
|
||
| Parameter | Description | Default | | ||
|-----|---------|-------------| | ||
|**General**| | ||
| hostNetwork | Indicates if the pod should run in the host networking namespace. | `false` | | ||
| image.pullPolicy | Specifies image pull policy: `IfNotPresent`, `Always`, `Never`. | `"IfNotPresent"` | | ||
| mode | Specifies Collector deployment options: `daemonset`, `deployment`, or `statefulset`. | `"daemonset"` | | ||
| ports.[\*].containerPort | Specifies containerPort used. | See footnote [^1] | | ||
| ports.[\*].enabled | Indicates if a port is enabled. | See footnote [^1] | | ||
| ports.[\*].hostPort | Specifies hostPort used. | See footnote [^1] | | ||
| ports.[\*].protocol | Specifies protocol used. | See footnote [^1] | | ||
| ports.[\*].servicePort | Specifies servicePort used. | See footnote [^1] | | ||
| resources.limits.cpu | Specifies CPU resource limits for containers. | `1` | | ||
| resources.limits.memory | Specifies memory resource limits for containers. | `"2Gi"` | | ||
|**Config**| | ||
| config.config | Specifies Collector receiver, processor, exporter, and extensions configurations. Refer to [aws-otel-collector](https://github.com/aws-observability/aws-otel-collector) for full details. **Note EKS Anywhere ADOT package version matches the exact aws-otel-collector version.** | See footnote [^2] | | ||
| config.config.receiver | Specifies how data gets in the Collector. Receivers can be either push or pull based, and support one or more data source. | See footnote [^2] | | ||
| config.config.processor | Specifies how processors are run on data between the stage of being received and being exported. Processors are optional though some are [recommended.](https://github.com/open-telemetry/opentelemetry-collector/tree/main/processor#recommended-processors) | See footnote [^2] | | ||
| config.config.exporters | Specifies how data gets sent to backends/destinations. Exporters can be either push or pull based, and support one or more data source. | See footnote [^2] | | ||
| config.config.extensions | Specifies tasks that do not involve processing telemetry data. Examples of extensions include health monitoring, service discovery, and data forwarding. Extensions are optional. | See footnote [^2] | | ||
| config.config.service | Specifies what components are enabled in the Collector based on the configuration found in the receivers, processors, exporters, and extensions sections. **If a component is configured, but not defined within the service section, then it is not enabled.** | See footnote [^2] | | ||
|**Deployment mode only**| | ||
| replicaCount | Specifies replicaCount for pods. | `1` | | ||
| service.type | Specifies service types: `ClusterIP`, `NodePort`, `LoadBalancer`, `ExternalName`. |`"ClusterIP"` | | ||
|
||
[^1]: | ||
The default `ports` enables `otlp` and `otlp-http`. See below specification for details. | ||
```yaml | ||
apiVersion: packages.eks.amazonaws.com/v1alpha1 | ||
kind: Package | ||
... | ||
spec: | ||
config: | | ||
ports: | ||
otlp: | ||
enabled: true | ||
containerPort: 4317 | ||
servicePort: 4317 | ||
hostPort: 4317 | ||
protocol: TCP | ||
otlp-http: | ||
enabled: true | ||
containerPort: 4318 | ||
servicePort: 4318 | ||
hostPort: 4318 | ||
protocol: TCP | ||
``` | ||
|
||
[^2]: | ||
The default `config.config` deploys an ADOT Collector with the metrics pipeline, which includes otlp and prometheus receiver, and logging exporter. See below specification for details. | ||
```yaml | ||
apiVersion: packages.eks.amazonaws.com/v1alpha1 | ||
kind: Package | ||
... | ||
spec: | ||
config: | | ||
config: | ||
receivers: | ||
otlp: | ||
protocols: | ||
grpc: | ||
endpoint: 0.0.0.0:4317 | ||
http: | ||
endpoint: 0.0.0.0:4318 | ||
prometheus: | ||
config: | ||
scrape_configs: | ||
- job_name: opentelemetry-collector | ||
scrape_interval: 10s | ||
static_configs: | ||
- targets: | ||
- ${MY_POD_IP}:8888 | ||
processors: | ||
batch: {} | ||
memory_limiter: null | ||
exporters: | ||
logging: | ||
loglevel: info | ||
extensions: | ||
health_check: {} | ||
memory_ballast: {} | ||
service: | ||
telemetry: | ||
metrics: | ||
address: 0.0.0.0:8888 | ||
extensions: | ||
- health_check | ||
- memory_ballast | ||
pipelines: | ||
metrics: | ||
exporters: | ||
- logging | ||
processors: | ||
- memory_limiter | ||
- batch | ||
receivers: | ||
- otlp | ||
- prometheus | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,15 @@ weight: 7 | |
description: > | ||
Changelog for Curated packages release | ||
--- | ||
## Package Bundle Release (02-28-2025) | ||
|
||
#### Changed | ||
|
||
- Harbor `2.11.1` to `2.12.1` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Doesn't this include fixing a bug with schema.json? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Updated |
||
- Fixes [schema.json](https://github.com/aws/eks-anywhere-build-tooling/blob/main/projects/goharbor/harbor/helm/schema.json) to sync with upstream version [PR](https://github.com/aws/eks-anywhere-build-tooling/pull/4373) | ||
- ADOT `0.41.1` to `0.42.0` | ||
- The `logging` exporter is now [deprecated](https://github.com/open-telemetry/opentelemetry-collector/pull/11037), users should update the config to the `debug` exporter instead. Example configuration can be found [here](https://github.com/open-telemetry/opentelemetry-collector/blob/main/exporter/debugexporter/README.md) | ||
|
||
|
||
## Package Bundle Release (12-26-2024) | ||
|
||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems redundant to include as part of every release, wondering if we should consolidate somehow.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes this is across packages, I was thinking we add the new
version .md
file only if there are significant changes otherwise just rename old to new. What do you think? I can do separate PR for this across packages.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yea that sounds reasonable, or we probably don't even need to include version? We can explore restructuring this to point to upstream because that is what we do anyways