emircanerkul
emircanerkul
Explore posts from servers
CCoder.com
Created by emircanerkul on 4/27/2025 in #help
Jupyterlab how to
No description
16 replies
CCoder.com
Created by emircanerkul on 4/22/2025 in #help
Kasm + Kubernates Deployment Problems
Hi, I use Kubernates Deployment template and wanted to add https://registry.coder.com/modules/kasmvnc did what it says just edit agent id but still having issue.
module "kasmvnc" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/kasmvnc/coder"
version = "1.0.23"
agent_id = coder_agent.main.id
desktop_environment = "xfce"
}
module "kasmvnc" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/kasmvnc/coder"
version = "1.0.23"
agent_id = coder_agent.main.id
desktop_environment = "xfce"
}
The issue is,
🚀 Starting KasmVNC server...
Can't locate DateTime.pm in @INC (you may need to install the DateTime module) (@INC entries checked: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.38.2 /usr/local/share/perl/5.38.2 /usr/lib/x86_64-linux-gnu/perl5/5.38 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl-base /usr/lib/x86_64-linux-gnu/perl/5.38 /usr/share/perl/5.38 /usr/local/lib/site_perl) at /usr/bin/vncserver line 42.
BEGIN failed--compilation aborted at /usr/bin/vncserver line 42.
🚀 KasmVNC server started successfully!
🚀 Starting KasmVNC server...
Can't locate DateTime.pm in @INC (you may need to install the DateTime module) (@INC entries checked: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.38.2 /usr/local/share/perl/5.38.2 /usr/lib/x86_64-linux-gnu/perl5/5.38 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl-base /usr/lib/x86_64-linux-gnu/perl/5.38 /usr/share/perl/5.38 /usr/local/lib/site_perl) at /usr/bin/vncserver line 42.
BEGIN failed--compilation aborted at /usr/bin/vncserver line 42.
🚀 KasmVNC server started successfully!
5 replies
CCoder.com
Created by emircanerkul on 4/20/2025 in #help
EWS01: websocket dial: failed to WebSocket dial: failed to send handshake request
I'm having this error. I already setup self signed certificate, cluster issuer and using below values. But still having the issue. Using k3s, it able to create pods but sockets are having trouble due to tls.
EWS01: websocket dial: failed to WebSocket dial: failed to send handshake request: Get "https://coder.lab.dttdata.com/api/v2/debug/ws": tls: failed to verify certificate: x509: certificate is valid for dc5503177ca435d680300ed475c2fda7.162e42cad00d0384ec662ce16b45b7d9.traefik.default, not coder.lab.dttdata.com
coder:
env:
- name: CODER_PG_CONNECTION_URL
valueFrom:
secretKeyRef:
name: coder-db-url
key: url
- name: CODER_ACCESS_URL
value: "https://coder.lab.dttdata.com"
- name: CODER_WILDCARD_ACCESS_URL
value: "*.coder.lab.dttdata.com"

service:
enable: true
type: ClusterIP
sessionAffinity: ClientIP
externalTrafficPolicy: Cluster
loadBalancerIP: ""
annotations: {}

ingress:
enable: true
host: "coder.lab.dttdata.com"
wildcardHost: "*.coder.lab.dttdata.com"
annotations: {}
secretNames: coder-tls-secret
wildcardSecretName: coder-tls-secret

tls:
secretName:
- coder-tls-secret
coder:
env:
- name: CODER_PG_CONNECTION_URL
valueFrom:
secretKeyRef:
name: coder-db-url
key: url
- name: CODER_ACCESS_URL
value: "https://coder.lab.dttdata.com"
- name: CODER_WILDCARD_ACCESS_URL
value: "*.coder.lab.dttdata.com"

service:
enable: true
type: ClusterIP
sessionAffinity: ClientIP
externalTrafficPolicy: Cluster
loadBalancerIP: ""
annotations: {}

ingress:
enable: true
host: "coder.lab.dttdata.com"
wildcardHost: "*.coder.lab.dttdata.com"
annotations: {}
secretNames: coder-tls-secret
wildcardSecretName: coder-tls-secret

tls:
secretName:
- coder-tls-secret
112 replies