Takuya Murakami
Takuya Murakami
In BaseVersion.convert() method, it compares String with '=='. I'm not sure this occur this issue, but it must be equals() call. ``` if (parser.currentToken() == JsonToken.VALUE_STRING) { if (parser.currentName() ==...
I found the root cause. The OpenSearch 2.19 returns JSON in HTTP compression with **content-encoding=snappy**, and Zipkin failed to umcompress it. (The OpenSsearch 2.17 does not compress it) I think...
@yankay Please include #11352 to fix #11350, without this cluster upgrade will fail.
Hmm.. It seems followng error is root cause. `can not mix '--config' with arguments [allow-experimental-upgrades certificate-renewal etcd-upgrade force yes]` I think we need fix kubeadm-upgrade.yml.
I think we need to upgrade the kubeadm configration from v1beta3 to v1beta4, and configure UpgradeApplyConfiguration instead of arguments. https://kubernetes.io/docs/reference/config-api/kubeadm-config.v1beta4/ * UpgradeApplyConfiguration * allowExperimentalUpgrades * certificateRenewal * etcdUpgrade * forceUpgrade...
I asked a question at https://github.com/kubernetes/kubeadm/issues/3084#issuecomment-2209123104
I got a answer https://github.com/kubernetes/kubeadm/issues/3084#issuecomment-2209300846 I think we need to remove `--config` option from `kubeadm upgrade`. Do you all have any concerns to remove the option?
I opened a PR to fix this.
@ArnCo I think we can't change configuration on upgrading anymore because kubeadm does not accept kubeadm-config.yaml file on upgrading. If we want to change the configuration, I think we need...