diff --git a/README.md b/README.md index 48f9b6b0..973bc4a4 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ #### Latest release -**v0.20.0** +**v0.21.0** Read the [change log](CHANGELOG.md) [![Build Status](https://img.shields.io/circleci/build/github/falcosecurity/falco/master?style=for-the-badge)](https://circleci.com/gh/falcosecurity/falco) [![CII Best Practices Summary](https://img.shields.io/cii/summary/2317?label=CCI%20Best%20Practices&style=for-the-badge)](https://bestpractices.coreinfrastructure.org/projects/2317) [![GitHub](https://img.shields.io/github/license/falcosecurity/falco?style=for-the-badge)](COPYING) diff --git a/docker/kernel/linuxkit/Dockerfile b/docker/kernel/linuxkit/Dockerfile index 4e1fe1fb..f6651e2d 100644 --- a/docker/kernel/linuxkit/Dockerfile +++ b/docker/kernel/linuxkit/Dockerfile @@ -1,13 +1,13 @@ ARG ALPINE_VERSION=3.10 ARG KERNEL_VERSION=4.9.184 -ARG FALCO_VERSION=0.20.0 +ARG FALCO_VERSION=0.21.0 FROM linuxkit/kernel:${KERNEL_VERSION} AS ksrc FROM falcosecurity/falco:${FALCO_VERSION}-minimal as falco FROM alpine:${ALPINE_VERSION} AS probe-build LABEL maintainer="cncf-falco-dev@lists.cncf.io" ARG KERNEL_VERSION=4.9.184 -ARG FALCO_VERSION=0.20.0 +ARG FALCO_VERSION=0.21.0 ENV FALCO_VERSION=${FALCO_VERSION} ENV KERNEL_VERSION=${KERNEL_VERSION} @@ -32,7 +32,7 @@ RUN apk add --no-cache --update \ autoconf FROM alpine:${ALPINE_VERSION} -ARG FALCO_VERSION=0.20.0 +ARG FALCO_VERSION=0.21.0 ENV FALCO_VERSION=${FALCO_VERSION} COPY --from=probe-build /usr/src/falco-${FALCO_VERSION}/falco-probe.ko / CMD ["insmod","/falco-probe.ko"] diff --git a/integrations/k8s-using-daemonset/k8s-with-rbac/falco-daemonset-configmap-slim.yaml b/integrations/k8s-using-daemonset/k8s-with-rbac/falco-daemonset-configmap-slim.yaml index c90f9676..6baccb2a 100644 --- a/integrations/k8s-using-daemonset/k8s-with-rbac/falco-daemonset-configmap-slim.yaml +++ b/integrations/k8s-using-daemonset/k8s-with-rbac/falco-daemonset-configmap-slim.yaml @@ -20,7 +20,7 @@ spec: privileged: true #env: # - name: FALCOCTL_FALCO_VERSION - # value: 0.20.0 + # value: 0.21.0 # - name: FALCOCTL_FALCO_PROBE_URL # value: # - name: FALCOCTL_FALCO_PROBE_REPO @@ -31,7 +31,7 @@ spec: readOnly: true containers: - name: falco - image: falcosecurity/falco:0.20.0-slim + image: falcosecurity/falco:0.21.0-slim securityContext: privileged: true # Uncomment the 3 lines below to enable eBPF support for Falco.