VM-Operator/dev-example/config.yaml

44 lines
1.3 KiB
YAML
Raw Normal View History

2023-08-19 15:22:31 +02:00
# Used for running manager outside Kubernetes.
# Keep in sync with kustomize.yaml
2023-08-09 18:17:30 +02:00
"/Manager":
2023-11-05 15:08:51 +01:00
# If provided, is shown at top left before namespace
# clusterName: "test"
# The controller manages the VM
2023-07-27 18:47:00 +02:00
"/Controller":
namespace: vmop-dev
2023-08-18 11:23:17 +02:00
"/Reconciler":
runnerData:
storageClassName: null
"/GuiSocketServer":
port: 8888
"/GuiHttpServer":
# This configures the GUI
"/ConsoleWeblet":
"/WebConsole":
"/LoginConlet":
users:
2024-05-14 11:27:09 +02:00
- name: admin
fullName: Administrator
password: "$2b$05$NiBd74ZGdplLC63ePZf1f.UtjMKkbQ23cQoO2OKOFalDBHWAOy21."
2024-05-14 11:27:09 +02:00
- name: test
fullName: Test Account
password: "$2b$05$hZaI/jToXf/d3BctZdT38Or7H7h6Pn2W3WiB49p5AyhDHFkkYCvo2"
"/RoleConfigurator":
rolesByUser:
# User admin has role admin
admin:
- admin
# All users have role other
"*":
- other
replace: false
"/RoleConletFilter":
conletTypesByRole:
# Admins can use all conlets
admin:
- "*"
# Others cannot use any conlet (except login conlet to log out)
other:
2024-05-21 09:03:07 +02:00
- --org.jdrupes.vmoperator.vmconlet.VmConlet
- org.jgrapes.webconlet.oidclogin.LoginConlet