Skip to content
This repository was archived by the owner on Oct 23, 2024. It is now read-only.

Commit 70a612b

Browse files
author
Ben Keith
committed
Update deployment versions for 5.0.1
1 parent 51eb10b commit 70a612b

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

Dockerfile.rhel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM registry.access.redhat.com/rhel7-atomic
22

3-
ARG AGENT_VERSION="5.0.0"
3+
ARG AGENT_VERSION="5.0.1"
44
LABEL name="SignalFx Smart Agent" \
55
maintainer="SignalFx, Inc." \
66
vendor="SignalFx, Inc." \

deployments/cloudfoundry/buildpack/bin/supply

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ BUILDPACK_DIR=`dirname $(readlink -f ${BASH_SOURCE%/*})`
1111
TARGET_DIR="$BUILD_DIR/.signalfx"
1212

1313
# Set a default version of the SignalFx Agent to use if none is specified
14-
SIGNALFX_AGENT_VERSION="${SIGNALFX_AGENT_VERSION-5.0.0}"
14+
SIGNALFX_AGENT_VERSION="${SIGNALFX_AGENT_VERSION-5.0.1}"
1515

1616
echo "-----> Installing signalfx-agent ${SIGNALFX_AGENT_VERSION}"
1717
echo " BUILD_DIR: $BUILD_DIR"

deployments/ecs/signalfx-agent-task.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
},
2222
{
2323
"name": "CONFIG_URL",
24-
"value": "https://raw.githubusercontent.com/signalfx/signalfx-agent/v5.0.0/deployments/ecs/agent.yaml"
24+
"value": "https://raw.githubusercontent.com/signalfx/signalfx-agent/v5.0.1/deployments/ecs/agent.yaml"
2525
}
2626
],
2727
"ulimits": null,
@@ -48,7 +48,7 @@
4848
"memory": null,
4949
"memoryReservation": null,
5050
"volumesFrom": [],
51-
"image": "quay.io/signalfx/signalfx-agent:5.0.0",
51+
"image": "quay.io/signalfx/signalfx-agent:5.0.1",
5252
"disableNetworking": null,
5353
"healthCheck": null,
5454
"essential": true,

deployments/fargate/example-fargate-task.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@
3434
},
3535
{
3636
"name": "CONFIG_URL",
37-
"value": "https://raw.githubusercontent.com/signalfx/signalfx-agent/v5.0.0/deployments/fargate/agent.yaml"
37+
"value": "https://raw.githubusercontent.com/signalfx/signalfx-agent/v5.0.1/deployments/fargate/agent.yaml"
3838
}
3939
],
4040
"dockerLabels": {
4141
"app": "signalfx-agent"
4242
},
4343
"name": "signalfx-agent",
44-
"image": "quay.io/signalfx/signalfx-agent:5.0.0"
44+
"image": "quay.io/signalfx/signalfx-agent:5.0.1"
4545
}
4646
],
4747
"cpu": "128",

deployments/k8s/daemonset.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
name: signalfx-agent
77
labels:
88
app: signalfx-agent
9-
version: 5.0.0
9+
version: 5.0.1
1010
spec:
1111
selector:
1212
matchLabels:
@@ -20,7 +20,7 @@ spec:
2020
metadata:
2121
labels:
2222
app: signalfx-agent
23-
version: 5.0.0
23+
version: 5.0.1
2424

2525
annotations:
2626
{}
@@ -41,7 +41,7 @@ spec:
4141

4242
containers:
4343
- name: signalfx-agent
44-
image: "quay.io/signalfx/signalfx-agent:5.0.0"
44+
image: "quay.io/signalfx/signalfx-agent:5.0.1"
4545
imagePullPolicy: IfNotPresent
4646
command:
4747
- /bin/signalfx-agent

deployments/k8s/helm/signalfx-agent/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
description: The SignalFx Smart Agent
33
name: signalfx-agent
4-
appVersion: 5.0.0
4+
appVersion: 5.0.1
55
version: 1.0.0
66
keywords:
77
- monitoring

deployments/k8s/helm/signalfx-agent/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Version of the signalfx-agent to deploy. This will be the default for the
22
# docker image tag if not overridden with imageTag
3-
agentVersion: 5.0.0
3+
agentVersion: 5.0.1
44

55
# The access token for SignalFx. (REQUIRED if signalFxAccessTokenSecretName not set)
66
signalFxAccessToken: ""

0 commit comments

Comments
 (0)