14297 Commits

Author SHA1 Message Date
Krzesimir Nowak
90a815ea4e sys-devel/gettext: Sync with Gentoo
It's from Gentoo commit 838acb806aa85a43ac6d0cc681e7f245bfee7377.
2022-08-22 15:38:42 +02:00
Krzesimir Nowak
0369b74682 sys-devel/gcc: Sync with Gentoo
It's from Gentoo commit 0101fc06b631f54c53dbc55eaed6d460c1b643f5.
2022-08-22 15:38:42 +02:00
Krzesimir Nowak
0496a287ea sys-devel/flex: Sync with Gentoo
It's from Gentoo commit 4d77781e2db7bb8bef7f390c43efc04ba58ff7bb.
2022-08-22 15:38:42 +02:00
Krzesimir Nowak
420f91b7c2 sys-devel/crossdev: Sync with Gentoo
It's from Gentoo commit f3d22c0fe930541422da4b3cb730e1f4576e9c31.
2022-08-22 15:38:42 +02:00
Krzesimir Nowak
334761561f sys-devel/bison: Sync with Gentoo
It's from Gentoo commit aa5ef7db2603077a71a59e107ce61fc8c5e5938f.
2022-08-22 15:38:42 +02:00
Krzesimir Nowak
28aca73b40 sys-devel/binutils: Sync with Gentoo
It's from Gentoo commit f957279a4eb67e24c85ad757217cb43c12afd3ce.
2022-08-22 15:38:41 +02:00
Krzesimir Nowak
2be8c38030 sys-devel/bc: Sync with Gentoo
It's from Gentoo commit 4056c750051d7302b3fc0f2e9c352360f60fcd0a.
2022-08-22 15:38:41 +02:00
Krzesimir Nowak
2f050ef133 sys-devel/automake-wrapper: Sync with Gentoo
It's from Gentoo commit 2167be053592596d6be6ea864468967995aa6985.
2022-08-22 15:38:41 +02:00
Krzesimir Nowak
b4088264a3 sys-devel/automake: Sync with Gentoo
It's from Gentoo commit fd13ed77986d9cb3a8d684aa54d0c5530cee2aed.
2022-08-22 15:38:41 +02:00
Krzesimir Nowak
ade038a084 sys-devel/autoconf-wrapper: Sync with Gentoo
It's from Gentoo commit b9eca299f763891e925151be08c660b00df3d9e2.
2022-08-22 15:38:41 +02:00
Krzesimir Nowak
6440d3126a sys-devel/autoconf: Sync with Gentoo
It's from Gentoo commit f3b6da09de225bd0b0c2de87f6fadd44a2e46a0d.
2022-08-22 15:38:41 +02:00
Ehsan Assgari
3c3b111746 Update coreos-base/flatcar-eks/files/download-kubelet.sh
Co-authored-by: Mathieu Tortuyaux <mathieu.tortuyaux@gmail.com>
2022-08-22 14:36:48 +02:00
Ehsan Assgari
be29c3cc35 Flatcar support for EKS on versions above 1.21
## Description

When an EC2 instance boots up with a flatcar image (even the latest) the kubelet fails.
The userdata defines (and should do so) that the `/etc/eks/bootstrap.sh` should run, which it does.

This seems to add a ExecStartPre to the kubelet.service:
`ExecStartPre=/usr/share/oem/eks/download-kubelet.sh`

Both the `bootstrap.sh` and the `download-kubelet.sh` are consistent with:
https://github.com/flatcar-linux/coreos-overlay/blob/main/coreos-base/flatcar-eks/files/bootstrap.sh
https://github.com/flatcar-linux/coreos-overlay/blob/main/coreos-base/flatcar-eks/files/download-kubelet.sh

The `download-kubelet.sh` fails with `Unsupported Kubernetes version` because in the case statement on line 24->50 (https://github.com/flatcar-linux/coreos-overlay/blob/main/coreos-base/flatcar-eks/files/download-kubelet.sh#L25) only has values for kubernetes version 1.15 -> 1.21

If I manually alter the file and add 1.22 (when I test this on 1.22.9 kubernetes version deployment) and re-run the `bootsrap.sh` it works fine as far as I can see, the node than joins the cluster and shows up as `Ready` and pods starting running on the node.

The last PR I can see on this particular thing was done about a year ago f0da7f8c9e

## Impact

No EKS support for kubernetes versions higher than 1.21

## Environment and steps to reproduce

1. **Set-up**: Create an EKS cluster with the latest flatcar AMI in the worker nodes
2. **Task**: SSH into the node (probably through a Bastion)
3. **Action(s)**:  No actions needed
4. **Error**: kubelet.service fails because the download-kubelet.sh doesn't have download locations for kubernetes version above 1.21

## Expected behavior

Download locations for kubernetes versions 1.22 and 1.23 (EKS doesn't have support for 1.24 yet it seems) should be located inside the download-kubelet.sh

## Additional information

By running `aws s3 ls s3://amazon-eks/` you can list the available locations of the other versions, so for it should result in this:

``` sh
case $CLUSTER_VERSION in
  1.23)
    S3_PATH="1.23.9/2022-07-27/"
    ;;
  1.22)
    S3_PATH="1.22.12/2022-07-27/"
    ;;
  1.21)
    S3_PATH="1.21.2/2021-07-05"
    ;;
  1.20)
    S3_PATH="1.20.4/2021-04-12"
    ;;
  1.19)
    S3_PATH="1.19.6/2021-01-05"
    ;;
  1.18)
    S3_PATH="1.18.9/2020-11-02"
    ;;
  1.17)
    S3_PATH="1.17.12/2020-11-02"
    ;;
  1.16)
    S3_PATH="1.16.15/2020-11-02"
    ;;
  1.15)
    S3_PATH="1.15.12/2020-11-02"
    ;;
  *)
    echo "Unsupported Kubernetes version"
    exit 1
    ;;
esac
```
2022-08-22 13:27:25 +02:00
Flatcar Buildbot
eb7632d2d3 app-misc: Upgrade ca-certificates 3.81 to 3.82 2022-08-22 07:22:53 +00:00
Flatcar Buildbot
133b75c5c5 sys-kernel: Upgrade Kernel 5.15.61 to 5.15.62 2022-08-22 07:22:28 +00:00
flatcar-ci
ed8dc724ff New version: main-3336.0.0-nightly-20220819-2100 2022-08-19 21:00:27 +00:00
Flatcar Buildbot
bbe064cdbf Update mantle container image to latest HEAD 2022-08-19 14:22:54 +00:00
Krzesimir Nowak
6209071399 Merge pull request #2097 from flatcar-linux/krnowak/mirror-calico
.github: find latest calico tag from tigera operator using github API
2022-08-19 14:46:55 +02:00
Krzesimir Nowak
5e26cf2807 Merge pull request #2090 from flatcar-linux/rust-1.63.0-main
Upgrade dev-lang/rust and virtual/rust in main from 1.62.1 to 1.63.0
2022-08-19 11:39:25 +02:00
Krzesimir Nowak
645da379e6 .github: Find latest calico release using github API
We fetch the latest release of calico from calicoproject/calico
releases instead of from calico-version.yaml file in tigera/operator
repo. This is because we download the Tigera Operator manifest from
the calico repository, so we can expect that when the release happens,
both calico and the operator agree on versions used (so we expect that
calico 3.24.0 is using operator version 1.28.0, and the operator
1.28.0 is using calico 3.24.0).
2022-08-19 11:15:18 +02:00
flatcar-ci
b397c3c0dc New version: main-3335.0.0-nightly-20220818-2100 2022-08-18 21:00:28 +00:00
Krzesimir Nowak
127de15c9b sys-kernel/coreos-firmware: Sync intel ice firmware version
The firmware got updated to version 1.3.30.0. Reflect this in the
ebuild.
2022-08-18 16:56:10 +02:00
Flatcar Buildbot
27073a3eb0 sys-kernel: Upgrade Linux Firmware 20220708 to 20220815 2022-08-18 16:56:10 +02:00
Krzesimir Nowak
4c225455f1 Merge pull request #2095 from flatcar-linux/linux-5.15.61-main
Upgrade Linux Kernel in main from 5.15.60 to 5.15.61
2022-08-18 16:55:19 +02:00
Flatcar Buildbot
a74828991c dev-lang: Upgrade dev-lang/rust 1.62.1 to 1.63.0 2022-08-18 15:01:52 +02:00
Krzesimir Nowak
4860ed8ae8 changelog: Fix a link 2022-08-18 13:27:06 +02:00
Krzesimir Nowak
19633c28d2 eclass/tmpfiles: Sync with Gentoo
It's from Gentoo commit 0b999ae3827969168427437e5d1d9aff39e4e56a.

The updated dev-libs/cyrus-sasl started using EAPI 8, and the tmpfiles
eclass did not support it. Update it to gain support for EAPI 8 too.
2022-08-18 11:46:05 +02:00
Krzesimir Nowak
3eb1461237 changelog: Add an entry 2022-08-18 10:49:14 +02:00
Krzesimir Nowak
4d79e56d25 dev-libs/cyrus-sasl: Move from coreos-overlay and update
It's from Gentoo commit 728228559d150db1a238accfa71f9eee7ae9bcd1.

This used to be in coreos-overlay, but upstream already has all the
patches we were carrying. The cross-compilation issue will be
addressed with an environment variable override in overlay.
2022-08-18 10:47:16 +02:00
Krzesimir Nowak
1217d6c0fa coreos/config: Add a fix for dev-libs/cyrus-sasl cross-compilation 2022-08-18 10:43:35 +02:00
Krzesimir Nowak
723745befc profiles: Drop redundant entry in package.provides in target profile
It's already a part of a base profile.
2022-08-18 10:42:07 +02:00
Krzesimir Nowak
6c60feb9a7 dev-libs/cyrus-sasl: Move to portage-stable 2022-08-18 10:34:49 +02:00
Flatcar Buildbot
7d5371aee8 sys-kernel: Upgrade Kernel 5.15.60 to 5.15.61 2022-08-18 07:22:54 +00:00
flatcar-ci
3aedfc4c68 New version: main-3334.0.0-nightly-20220817-2100 2022-08-17 21:00:30 +00:00
Flatcar Buildbot
e44aacf2d5 sys-kernel: Upgrade Kernel 5.15.59 to 5.15.60 2022-08-16 21:16:34 +02:00
flatcar-ci
0fca69228a New version: main-3332.0.0-nightly-20220815-2100 2022-08-15 21:00:33 +00:00
Jeremi Piotrowski
39a5eddec4 Merge pull request #2027 from flatcar-linux/t-lo/slsa-record-provenance-main
Record SLSA provenance data by extending profile bashrc with phase hooks.
2022-08-15 13:38:21 +02:00
flatcar-ci
08e8ea6c82 New version: main-3329.0.0-nightly-20220812-2100 2022-08-12 21:00:24 +00:00
Krzesimir Nowak
7f4b70716e changelog: Add an entry 2022-08-12 15:52:52 +02:00
Krzesimir Nowak
38206dda38 changelog: Add an entry 2022-08-12 15:37:59 +02:00
Krzesimir Nowak
027227a730 dev-util/boost-build: Sync with Gentoo
It's from Gentoo commit d585da320a892adaa1e9722474a487fd37c279db.
2022-08-12 15:12:54 +02:00
Krzesimir Nowak
e2dc07158f dev-libs/boost: Sync with Gentoo
It's from Gentoo commit a0ec3cce08f57b6cd6ef677671f2312274a00c9d.
2022-08-12 15:12:46 +02:00
Krzesimir Nowak
82315558d7 dev-util/gdbus-codegen: Sync with Gentoo
It's from Gentoo commit 03c26f279d5d2d4a5d6944535789b550859a17f6.
2022-08-12 14:49:11 +02:00
Krzesimir Nowak
54a589023c dev-libs/gobject-introspection-common: Sync with Gentoo
It's from Gentoo commit 729cdc5fce381d13d1deabed88b37a32e056bb3b.
2022-08-12 14:48:37 +02:00
Krzesimir Nowak
d862376792 dev-libs/gobject-introspection: Sync with Gentoo
It's from Gentoo commit d7aa7679d02639900205cb2b4d85158bec07ddec.
2022-08-12 14:48:35 +02:00
Krzesimir Nowak
1a39f81604 dev-util/glib-utils: Sync with Gentoo
It's from Gentoo commit dccfc0c167f40eb6d957e77a062832ac10103618.
2022-08-12 14:48:18 +02:00
Krzesimir Nowak
07ff7dd617 dev-libs/glib: Sync with Gentoo
It's from Gentoo commit 36780d611d18cd92c35c304b0ea8893e3ebe6a5d.
2022-08-12 14:48:05 +02:00
Flatcar Buildbot
f87b7996f0 app-emulation: Upgrade Containerd 1.6.7 to 1.6.8 2022-08-12 13:04:27 +02:00
Sayan Chowdhury
046403e71d app-editors/vim,vim-core: Add accept_keywords for vim & vim-core
Signed-off-by: Sayan Chowdhury <schowdhury@microsoft.com>
2022-08-12 14:53:32 +05:30
Sayan Chowdhury
a76ae78a2b changelog: Add the changelog entry for vim 8.2.5066 release
Signed-off-by: Sayan Chowdhury <schowdhury@microsoft.com>
2022-08-12 11:21:17 +05:30