I'm getting an error
This apiVersion and/or kind does not reference a schema known by Cloud Code. Please ensure you are using a valid apiVersion and kind.
on both manifest.yaml and nordered-service.yaml.
manifest.yaml =
apiVersion: apps/v1
kind: Deployment
metadata:
name: nodered-deployment
spec:
replicas: 1
selector:
matchLabels:
app: nodered
template:
metadata:
labels:
app: nodered
spec:
containers:
- name: nodered
image: nodered/node-red
ports:
- containerPort: 1880
nordered-service.yaml =
apiVersion: v1
kind: Service
metadata:
name: nodered-service
spec:
type: LoadBalancer
selector:
app: nodered
ports:
- name: http
port: 80
targetPort: 1880
I'm getting the same errors on both files with apiVersion and kind.
I'm getting an error
This apiVersion and/or kind does not reference a schema known by Cloud Code. Please ensure you are using a valid apiVersion and kind.
on both manifest.yaml and nordered-service.yaml.
manifest.yaml =
apiVersion: apps/v1
kind: Deployment
metadata:
name: nodered-deployment
spec:
replicas: 1
selector:
matchLabels:
app: nodered
template:
metadata:
labels:
app: nodered
spec:
containers:
- name: nodered
image: nodered/node-red
ports:
- containerPort: 1880
nordered-service.yaml =
apiVersion: v1
kind: Service
metadata:
name: nodered-service
spec:
type: LoadBalancer
selector:
app: nodered
ports:
- name: http
port: 80
targetPort: 1880
I'm getting the same errors on both files with apiVersion and kind.
Share Improve this question edited 2 days ago gre_gor 6,75111 gold badges74 silver badges89 bronze badges asked Apr 1 at 6:33 user30128602user30128602 212 bronze badges New contributor user30128602 is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct.1 Answer
Reset to default 0The error message you're seeing is related to the Cloud Code extension (such as VS Code, IntelliJ, or another IDE with Kubernetes integration), rather than an issue with the Kubernetes API server itself, as your apiVersion and kind appear to be standard and correct. This likely indicates that Cloud Code's internal validation system either doesn't recognize or isn't properly syncing with the latest Kubernetes API schema, or there could be a caching problem.
You can try the following workarounds:
Test directly with kubectl by running:
kubectl apply -f manifest.yaml
. If this works and the error doesn't occur when applying the files directly, it suggests the issue is likely related to the Cloud Code plugin or your IDE configuration.You can also try the workarounds mentioned here by adding a custom schema.
Try restarting the IDE and reloading the Kubernetes context. Cloud Code caches Kubernetes API schemas for validation, and sometimes this cache can become outdated or corrupted, particularly after cluster upgrades or changes.
Make sure you have the latest version of the Cloud Code extension installed and verify that your Kubernetes version is compatible with the API versions.
I also suggest filling a bug or issue for more thorough resolution.