Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Kubernetes no matches for kind "Deployment" in version "extensions/v1beta1"

I am trying to deploy the next frontend-deployment.yaml in Kubernetes using Jenkins, but I am having the next error:

[frontend] Running shell script
+ kubectl apply -f IKonnekt/frontend-deployment.yaml
error: unable to recognize "IKonnekt/frontend-deployment.yaml": no matches for kind "Deployment" in version "extensions/v1beta1"

If I run kubectl apply -f IKonnekt/frontend-deployment.yaml from a machine inside the Kubernetes cluster it works fine.

Kubernetes Client Version: 1.12.1
Kubernetes Server Version: 1.11.0

This is my frontend-deployment.yaml:

apiVersion: extensions/v1beta1
kind: Deployment
metadata:
  name: ikonnekt-frontend-deployment
spec:
  replicas: 1
  template:
    metadata:
      labels:
        app: ikonnekt-frontend
    spec:
      containers:
      - name: ikonnekt-frontend
        image: ikonnektfrontend
        imagePullPolicy: Always
        env:
        - name: REACT_APP_API
          value: "http://IP:Port"
        - name: REACT_APP_AUTH_ENDPOINT
          value: "http://IP:Port/auth"
        ports:
        - containerPort: 80
      imagePullSecrets:
      - name: regcred
like image 552
Asier Gomez Avatar asked Oct 18 '18 15:10

Asier Gomez


1 Answers

Just change apiVersion to this: apiVersion: apps/v1

like image 160
thierno Avatar answered Nov 14 '22 16:11

thierno