-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Known issues for 1.0.0-beta #68
Comments
Unable to list Secret and ConfigMap resources using k9s: derailed/k9s#2238 The following errors are returned. For secrets:
For configmaps:
|
Creating workloads and resources inside a non existing namespace silently fails.
The following error is raised in k2d logs:
On a vanilla k8s, the following error is returned by
|
Applying a manifest that creates a namespace and multiple resources within that namespace will fail with "namespace not found" error: Using the following nodered.yml manifest: apiVersion: v1
kind: Namespace
metadata:
name: node-red
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: node-red
namespace: node-red
labels:
app: node-red
spec:
selector:
matchLabels:
app: node-red
template:
metadata:
labels:
app: node-red
spec:
containers:
- name: node-red
image: nodered/node-red:latest
ports:
- containerPort: 1880
securityContext:
privileged: true
volumeMounts:
- name: node-red-data
mountPath: /data
env:
- name: NODE_NAME
valueFrom:
fieldRef:
fieldPath: spec.nodeName
- name: TZ
value: America/Los_Angeles
volumes:
- name: node-red-data
persistentVolumeClaim:
claimName: node-red-claim
---
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: node-red-claim
namespace: node-red
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
---
apiVersion: v1
kind: Service
metadata:
name: node-red
namespace: node-red
spec:
selector:
app: node-red
type: LoadBalancer
ports:
- name: node-red-ui
port: 1880
protocol: TCP
targetPort: 1880 Trying to apply this manifest:
Likely, the deletion of the manifest will fail as well:
This issue has been introduced following the fix for #68 (comment) (via #70) |
Applying a manifest that contains a service definition when running k2d under Podman fails to create the container with the following error:
|
Closing in favor of #83 |
This is a thread to reference known issues for the 1.0.0-beta release.
The text was updated successfully, but these errors were encountered: