Skip to content

Commit 089af0f

Browse files
authored
Release 2.2.14 (#1262)
1 parent 03c7dbf commit 089af0f

File tree

8 files changed

+24
-13
lines changed

8 files changed

+24
-13
lines changed

.github/actions/install_python_and_requirements/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ runs:
1010
steps:
1111
- name: Install python
1212
uses: actions/setup-python@v4
13+
continue-on-error: true
1314
with:
1415
python-version: ${{ inputs.python_version }}
1516

.github/workflows/reusable-agent-build-linux-packages-new.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -106,24 +106,25 @@ jobs:
106106
107107
build_packages:
108108
name: Build package ${{ matrix.variant.builder_name }}-${{ matrix.variant.package_type }}
109-
runs-on: ${{ vars.RUNNER }}
109+
runs-on: ${{ matrix.variant.runner }}
110110
needs:
111111
- build_dependencies
112112
strategy:
113113
matrix:
114114
variant:
115-
- { "builder_name": "aio-x86_64", "package_type": "deb" }
116-
- { "builder_name": "aio-x86_64", "package_type": "rpm" }
117-
- { "builder_name": "aio-aarch64", "package_type": "deb" }
118-
- { "builder_name": "aio-aarch64", "package_type": "rpm" }
119-
- { "builder_name": "non-aio", "package_type": "deb" }
120-
- { "builder_name": "non-aio", "package_type": "rpm" }
115+
- { "builder_name": "aio-x86_64", "package_type": "deb", runner: "ubuntu-22.04" }
116+
- { "builder_name": "aio-x86_64", "package_type": "rpm", runner: "ubuntu-22.04" }
117+
- { "builder_name": "aio-aarch64", "package_type": "deb", runner: "aws-aarch64" }
118+
- { "builder_name": "aio-aarch64", "package_type": "rpm", runner: "aws-aarch64" }
119+
- { "builder_name": "non-aio", "package_type": "deb", runner: "ubuntu-22.04" }
120+
- { "builder_name": "non-aio", "package_type": "rpm", runner: "ubuntu-22.04" }
121121
steps:
122122
- name: Checkout repository
123123
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
124124

125125
- name: install python and requirements
126-
uses: ./.github/actions/install_python_and_requirements
126+
uses: actions/setup-python@v4
127+
continue-on-error: true
127128
with:
128129
python_version: ${{ inputs.python_version }}
129130

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Scalyr Agent 2 Changes By Release
22
=================================
33

4+
## 2.2.14 "Tycho" - May 6, 2024
5+
<!---
6+
Packaged by Ales Novak <[email protected]> on May 6, 2024 00:00 -0800
7+
--->
8+
9+
Changes:
10+
Support sending events to multiple Dataset accounts via K8s annotations. This feature was updated to use secrets from the same namespace as the pod and hierarchy of default secrets were added: default secret -> namespace secret -> pod secret -> container secret.
11+
See [kubernetes_monitor.md](docs/monitors/kubernetes_monitor.md) for documentation.
12+
413
## 2.2.13 "Killian" - Mar 30, 2024
514
<!---
615
Packaged by Ales Novak <[email protected]> on Mar 30, 2024 00:00 -0800

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.2.13
1+
2.2.14

k8s/default-namespace/scalyr-agent-2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ spec:
5050
envFrom:
5151
- configMapRef:
5252
name: scalyr-config
53-
image: scalyr/scalyr-k8s-agent:2.2.13
53+
image: scalyr/scalyr-k8s-agent:2.2.14
5454
imagePullPolicy: Always
5555
name: scalyr-agent
5656
securityContext:

k8s/no-kustomize/scalyr-agent-2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ spec:
5050
envFrom:
5151
- configMapRef:
5252
name: scalyr-config
53-
image: scalyr/scalyr-k8s-agent:2.2.13
53+
image: scalyr/scalyr-k8s-agent:2.2.14
5454
imagePullPolicy: Always
5555
name: scalyr-agent
5656
securityContext:

k8s/scalyr-agent-2-envfrom.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ spec:
4949
envFrom:
5050
- configMapRef:
5151
name: scalyr-config
52-
image: scalyr/scalyr-k8s-agent:2.2.13
52+
image: scalyr/scalyr-k8s-agent:2.2.14
5353
imagePullPolicy: Always
5454
name: scalyr-agent
5555
securityContext:

k8s/scalyr-agent-2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ spec:
4949
envFrom:
5050
- configMapRef:
5151
name: scalyr-config
52-
image: scalyr/scalyr-k8s-agent:2.2.13
52+
image: scalyr/scalyr-k8s-agent:2.2.14
5353
imagePullPolicy: Always
5454
name: scalyr-agent
5555
securityContext:

0 commit comments

Comments
 (0)