fix: fix misc. issues (#45)
parent
1e3ac8be4c
commit
34aedce094
Binary file not shown.
After Width: | Height: | Size: 526 KiB |
Binary file not shown.
Before Width: | Height: | Size: 163 KiB |
@ -1,17 +1,18 @@
|
||||
#!/usr/bin/env sh
|
||||
|
||||
echo "Instalalting ${MODULE_NAME}..."
|
||||
BOLD='\033[0;1m'
|
||||
echo "$${BOLD}Installing MODULE_NAME..."
|
||||
# Add code here
|
||||
# Use varibles from the templatefile function in main.tf
|
||||
# e.g. LOG_PATH, PORT, etc.
|
||||
|
||||
echo "Installation comlete!"
|
||||
echo "🥳 Installation comlete!"
|
||||
|
||||
echo "Starting ${MODULE_NAME}..."
|
||||
echo "👷 Starting MODULE_NAME in background..."
|
||||
# Start the app in here
|
||||
# 1. Use & to run it in background
|
||||
# 2. redirct stdout and stderr to log files
|
||||
|
||||
./app >${LOG_PATH} 2>&1 &
|
||||
|
||||
echo "Sample app started!"
|
||||
echo "check logs at ${LOG_PATH}"
|
||||
|
@ -1,22 +1,25 @@
|
||||
#!/usr/bin/env sh
|
||||
|
||||
echo "Instalalting ${MODULE_NAME}..."
|
||||
BOLD='\033[0;1m'
|
||||
|
||||
echo "$${BOLD}Installing jupyterlab!\n"
|
||||
|
||||
# check if jupyterlab is installed
|
||||
if ! command -v jupyterlab &> /dev/null then
|
||||
# install jupyterlab
|
||||
if ! command -v jupyterlab > /dev/null 2>&1; then
|
||||
# install jupyterlab
|
||||
# check if python3 pip is installed
|
||||
if ! command -v pip3 &> /dev/null then
|
||||
if ! command -v pip3 > /dev/null 2>&1; then
|
||||
echo "pip3 is not installed"
|
||||
echo "Please install pip3 and try again"
|
||||
echo "Please install pip3 in your Dockerfile/VM image before running this script"
|
||||
exit 1
|
||||
fi
|
||||
pip3 install jupyterlab
|
||||
echo "jupyterlab installed!"
|
||||
# install jupyterlab
|
||||
pip3 install --upgrade --no-cache-dir --no-warn-script-location jupyterlab
|
||||
echo "🥳 jupyterlab has been installed\n\n"
|
||||
else
|
||||
echo "🥳 jupyterlab is already installed\n\n"
|
||||
fi
|
||||
|
||||
echo "Starting ${MODULE_NAME}..."
|
||||
|
||||
$HOME/.local/bin/jupyter lab --no-browser --LabApp.token='' --LabApp.password='' >${LOG_PATH} 2>&1 &
|
||||
|
||||
echo "Started ${MODULE_NAME}!"
|
||||
echo "👷 Starting jupyterlab in background..."
|
||||
echo "check logs at ${LOG_PATH}"
|
||||
$HOME/.local/bin/jupyter lab --ServerApp.ip='0.0.0.0' --ServerApp.port=${PORT} --no-browser --ServerApp.token='' --ServerApp.password='' >${LOG_PATH} 2>&1 &
|
||||
|
@ -1,39 +0,0 @@
|
||||
---
|
||||
display_name: KasmVNC
|
||||
description: A modern open source VNC server
|
||||
icon: ../.icons/kasmvnc.svg
|
||||
maintainer_github: coder
|
||||
verified: true
|
||||
tags: [helper, VNC, web]
|
||||
---
|
||||
|
||||
# KasmVNC
|
||||
|
||||
Automatically install [KasmVNC](https://kasmweb.com/kasmvnc) in a workspace, and create an app to access it via the dashboard.
|
||||
|
||||
## Examples
|
||||
|
||||
1. Add latest version of KasmVNC with [`lxde`](https://www.lxde.org/) desktop environment:
|
||||
|
||||
```hcl
|
||||
module "kasmvnc" {
|
||||
source = "https://registry.coder.com/modules/kasmvnc"
|
||||
agent_id = coder_agent.example.id
|
||||
}
|
||||
|
||||
```
|
||||
|
||||
2. Add specific version of KasmVNC with [`mate`](https://mate-desktop.org/) desktop environment and custom port:
|
||||
|
||||
```hcl
|
||||
module "kasmvnc" {
|
||||
source = "https://registry.coder.com/modules/kasmvnc"
|
||||
agent_id = coder_agent.example.id
|
||||
version = "1.0.0"
|
||||
desktop_environment = "mate"
|
||||
port = 6080
|
||||
}
|
||||
|
||||
```
|
||||
|
||||
![Screenshot of KasmVNC]() //TODO
|
@ -1,55 +0,0 @@
|
||||
terraform {
|
||||
required_version = ">= 1.0"
|
||||
|
||||
required_providers {
|
||||
coder = {
|
||||
source = "coder/coder"
|
||||
version = ">= 0.12"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
variable "agent_id" {
|
||||
type = string
|
||||
description = "The ID of a Coder agent."
|
||||
}
|
||||
|
||||
variable "port" {
|
||||
type = number
|
||||
description = "The port to run KasmVNC on."
|
||||
default = 8443
|
||||
}
|
||||
|
||||
variable "desktop_environment" {
|
||||
type = string
|
||||
description = "The desktop environment to for KasmVNC (xfce, lxde, mate, etc)."
|
||||
default = "lxde"
|
||||
}
|
||||
|
||||
variable "version" {
|
||||
type = string
|
||||
description = "Version of KasmVNC to install."
|
||||
default = "1.2.0"
|
||||
}
|
||||
|
||||
resource "coder_script" "kasm_vnc" {
|
||||
agent_id = var.agent_id
|
||||
display_name = "KasmVNC"
|
||||
icon = "/icon/kasmvnc.svg"
|
||||
script = templatefile("${path.module}/run.sh", {
|
||||
PORT : var.port,
|
||||
DESKTOP_ENVIRONMENT : var.desktop_environment,
|
||||
VERSION : var.version
|
||||
})
|
||||
run_on_start = true
|
||||
}
|
||||
|
||||
resource "coder_app" "kasm_vnc" {
|
||||
agent_id = var.agent_id
|
||||
slug = "kasm-vnc"
|
||||
display_name = "kasmVNC"
|
||||
url = "http://localhost:${var.port}"
|
||||
icon = "/icon/kasmvnc.svg"
|
||||
subdomain = false
|
||||
share = "owner"
|
||||
}
|
@ -1,40 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Check if desktop enivronment is installed
|
||||
if ! dpkg -s ${DESKTOP_ENVIRONMENT} &>/dev/null; then
|
||||
sudo apt-get update
|
||||
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y ${DESKTOP_ENVIRONMENT}
|
||||
else
|
||||
echo "${DESKTOP_ENVIRONMENT} is already installed."
|
||||
fi
|
||||
|
||||
# Check if vncserver is installed
|
||||
if ! dpkg -s kasmvncserver &>/dev/null; then
|
||||
cd /tmp
|
||||
wget https://github.com/kasmtech/KasmVNC/releases/download/v${VERSION}/kasmvncserver_focal_${VERSION}_amd64.deb
|
||||
sudo apt install -y ./kasmvncserver_focal_${VERSION}_amd64.deb
|
||||
printf "🥳 KasmVNC v${VERSION} has been successfully installed!\n\n"
|
||||
else
|
||||
echo "KasmVNC is already installed."
|
||||
fi
|
||||
|
||||
sudo addgroup $USER ssl-cert
|
||||
|
||||
# Coder port-forwarding from dashboard only supports HTTP
|
||||
sudo bash -c 'cat > /etc/kasmvnc/kasmvnc.yaml <<EOF
|
||||
network:
|
||||
protocol: http
|
||||
websocekt_port: ${PORT}
|
||||
ssl:
|
||||
require_ssl: false
|
||||
udp:
|
||||
public_ip: 127.0.0.1
|
||||
EOF'
|
||||
|
||||
# This password is not used since we start the server without auth.
|
||||
# The server is protected via the Coder session token / tunnel
|
||||
# and does not listen publicly on the VM
|
||||
echo -e "password\npassword\n" | vncpasswd -wo -u $USER
|
||||
|
||||
# Start the server :)
|
||||
sudo su -u $USER bash -c 'vncserver -select-de "${DESKTOP_ENVIRONMENT}" -disableBasicAuth'
|
Loading…
Reference in New Issue