https://linen.dev logo
a

Alexandre Chouraki

02/14/2022, 3:59 PM
Hi, Did anyone manage to spin up Airbyte on Kubernetes? I tried to follow the relevant docs and as soon as I ran the kustomization
kubectl apply -k kube/overlays/stable
I get
error: json: unknown field "envs"
error. I haven’t really dived into the code just read the docs to do a quick start.. should I change something on one of the manifests?
j

Javier

02/14/2022, 9:35 PM
I guess you have older version of kubectl/kustomize. The newer versions of kustomize has
envs
Can you try upgrading kustomize and then retry?
d

Divya (Proximity)

02/16/2022, 8:46 AM
kubectl version
Copy code
Client Version: <http://version.Info|version.Info>{Major:"1", Minor:"17+", GitVersion:"v1.17.17-dispatcher", GitCommit:"a39a896b5018d0c800124a36757433c660fd0880", GitTreeState:"clean", BuildDate:"2021-01-28T22:06:27Z", GoVersion:"go1.13.9", Compiler:"gc", Platform:"darwin/amd64"}
Server Version: <http://version.Info|version.Info>{Major:"1", Minor:"22", GitVersion:"v1.22.3", GitCommit:"c92036820499fedefec0f847e2054d824aea6cd1", GitTreeState:"clean", BuildDate:"2021-10-27T18:35:25Z", GoVersion:"go1.16.9", Compiler:"gc", Platform:"linux/amd64"}
kustomize version
Copy code
{Version:kustomize/v4.5.2 GitCommit:9091919699baf1c5a5bf71b32ca73a993e98088b BuildDate:2022-02-09T23:19:28Z GoOs:darwin GoArch:amd64}
I’m doing all this to deploy it on minikube as per docs here
r

Roxy Trofymchuk

02/16/2022, 10:39 AM
can you try upgrading your kubectl version to
v1.22.4
u

user

02/16/2022, 12:27 PM
I upgraded to the latest version and now it seems working.
kubectl version
Copy code
Client Version: <http://version.Info|version.Info>{Major:"1", Minor:"23", GitVersion:"v1.23.3", GitCommit:"816c97ab8cff8a1c72eccca1026f7820e93e0d25", GitTreeState:"clean", BuildDate:"2022-01-25T21:17:57Z", GoVersion:"go1.17.6", Compiler:"gc", Platform:"darwin/amd64"}
Server Version: <http://version.Info|version.Info>{Major:"1", Minor:"22", GitVersion:"v1.22.3", GitCommit:"c92036820499fedefec0f847e2054d824aea6cd1", GitTreeState:"clean", BuildDate:"2021-10-27T18:35:25Z", GoVersion:"go1.16.9", Compiler:"gc", Platform:"linux/amd64"}
Thank you for flagging that up.