Skip to content

Commit

Permalink
update to fix openSSL CVE (#276)
Browse files Browse the repository at this point in the history
* update to fix openSSL CVE

* remove PR number from changelog
  • Loading branch information
pkanal authored Jul 25, 2022
1 parent 3e292cb commit 369c001
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 49 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Honeycomb Kubernetes Agent Changelog

## 2.5.3 2022-07-25

- fixed openSSL CVE | [@pkanal](https://github.com/pkanal)

## 2.5.2 2022-06-09

### Fixes
Expand Down
97 changes: 49 additions & 48 deletions examples/quickstart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ roleRef:
kind: ClusterRole
name: honeycomb-serviceaccount
subjects:
- kind: ServiceAccount
name: honeycomb-serviceaccount
namespace: honeycomb
- kind: ServiceAccount
name: honeycomb-serviceaccount
namespace: honeycomb
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
Expand Down Expand Up @@ -78,6 +78,7 @@ data:
- node
- pod
# Daemonset
---
apiVersion: apps/v1
Expand All @@ -104,51 +105,51 @@ spec:
- operator: Exists
effect: NoSchedule
containers:
- env:
- name: HONEYCOMB_APIKEY
valueFrom:
secretKeyRef:
key: api-key
name: honeycomb
- name: NODE_NAME
valueFrom:
fieldRef:
fieldPath: spec.nodeName
- name: NODE_IP
valueFrom:
fieldRef:
fieldPath: status.hostIP
image: honeycombio/honeycomb-kubernetes-agent:2.5.2
imagePullPolicy: IfNotPresent
name: honeycomb-agent
resources:
limits:
memory: 200Mi
requests:
cpu: 100m
memory: 200Mi
volumeMounts:
- mountPath: "/etc/honeycomb"
name: config
readOnly: false
- mountPath: "/var/log"
name: varlog
readOnly: false
- mountPath: "/var/lib/docker/containers"
name: varlibdockercontainers
readOnly: true
- env:
- name: HONEYCOMB_APIKEY
valueFrom:
secretKeyRef:
key: api-key
name: honeycomb
- name: NODE_NAME
valueFrom:
fieldRef:
fieldPath: spec.nodeName
- name: NODE_IP
valueFrom:
fieldRef:
fieldPath: status.hostIP
image: honeycombio/honeycomb-kubernetes-agent:2.5.3
imagePullPolicy: IfNotPresent
name: honeycomb-agent
resources:
limits:
memory: 200Mi
requests:
cpu: 100m
memory: 200Mi
volumeMounts:
- mountPath: "/etc/honeycomb"
name: config
readOnly: false
- mountPath: "/var/log"
name: varlog
readOnly: false
- mountPath: "/var/lib/docker/containers"
name: varlibdockercontainers
readOnly: true
serviceAccountName: honeycomb-serviceaccount
terminationGracePeriodSeconds: 30
volumes:
- configMap:
items:
- key: config.yaml
path: config.yaml
name: honeycomb-agent-config
name: config
- hostPath:
path: "/var/log"
name: varlog
- hostPath:
path: "/var/lib/docker/containers"
name: varlibdockercontainers
- configMap:
items:
- key: config.yaml
path: config.yaml
name: honeycomb-agent-config
name: config
- hostPath:
path: "/var/log"
name: varlog
- hostPath:
path: "/var/lib/docker/containers"
name: varlibdockercontainers
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.5.2
2.5.3

0 comments on commit 369c001

Please sign in to comment.