This message was deleted.
# k3s
a
This message was deleted.
c
That’s not a file that K3s comes with. How are you dropping the chart tarball and HelmChart manifest for that?
6444 is the core kubernetes apiserver listener, you won’t find the static file handler there. It’s only on the supervisor+apiserver listener on port 6443. That’s not something that’s changed.
w
Thank you for the reply @creamy-pencil-82913 we are using only one node in cluster, and using KUBERNETES_API variable in helm yaml chart.
Copy code
apiVersion: <http://helm.cattle.io/v1|helm.cattle.io/v1>
kind: HelmChart
metadata:
  name: calico
  namespace: kube-system
spec:
  chart: https://%{KUBERNETES_API}%/static/charts/%CHART_TAR%i
In v.123.3, this variable is substituting with 6443 port,
where in 1.27.4 and -v1.26.7( so far i tested) it is substituting with 6444 port
. I also tested with 1.27.1 , it is substituting with 6443(expected) port.