fluent-bit: SSL Certificate expired for packages.fluentbit.io

Bug Report

Describe the bug Getting SSL certificate expired when trying to fetch GPG key: https://packages.fluentbit.io/fluentbit.key The certificate expired today

To Reproduce

curl -v https://packages.fluentbit.io/fluentbit.key

* SSL certificate problem: certificate has expired
* Closing connection 0
curl: (60) SSL certificate problem: certificate has expired
More details here: https://curl.haxx.se/docs/sslcerts.html

Expected behavior SSL Certificate pass

About this issue

  • Original URL
  • State: closed
  • Created 2 years ago
  • Reactions: 62
  • Comments: 23 (3 by maintainers)

Most upvoted comments

This should now be resolved, thanks all

From looking at packages.fluentbit.io, this seems fixed now. The SSL certificate was updated recently.

Spent some time just now trying to make it install. Here are the scripts that we used to make it install. Hope it can help others.

  • First 2 lines disables SSL checking for apt
  • Had to add --no-check-certificate to wget to ignore the certificate
touch /etc/apt/apt.conf.d/80ssl-exceptions
echo "Acquire::https::packages.fluentbit.io::Verify-Peer \"false\";Acquire::https::packages.fluentbit.io::Verify-Host \"false\";" >> /etc/apt/apt.conf.d/80ssl-exceptions
wget --no-check-certificate -qO - http://packages.fluentbit.io/fluentbit.key | apt-key add -
echo "deb https://packages.fluentbit.io/debian/stretch stretch main" >> /etc/apt/sources.list
apt-get update
apt-get -y --allow-unauthenticated install td-agent-bit