Some checks failed
Java CI with Gradle / build (push) Has been cancelled
Add oveview and enhance.
84 lines
No EOL
2.3 KiB
YAML
84 lines
No EOL
2.3 KiB
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
resources:
|
|
- ../deploy
|
|
|
|
namespace: vmop-dev
|
|
|
|
patches:
|
|
- patch: |-
|
|
kind: PersistentVolumeClaim
|
|
apiVersion: v1
|
|
metadata:
|
|
name: vmop-image-repository
|
|
spec:
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
resources:
|
|
requests:
|
|
storage: 10Gi
|
|
storageClassName: local-path
|
|
|
|
- patch: |-
|
|
kind: ConfigMap
|
|
apiVersion: v1
|
|
metadata:
|
|
name: vm-operator
|
|
data:
|
|
# Keep in sync with config.yaml
|
|
config.yaml: |
|
|
"/Manager":
|
|
"/Controller":
|
|
namespace: vmop-dev
|
|
"/Reconciler":
|
|
runnerData:
|
|
storageClassName: null
|
|
"/GuiSocketServer":
|
|
port: 8888
|
|
"/GuiHttpServer":
|
|
# This configures the GUI
|
|
"/ConsoleWeblet":
|
|
"/WebConsole":
|
|
"/LoginConlet":
|
|
users:
|
|
admin:
|
|
fullName: Administrator
|
|
password: "$2b$05$NiBd74ZGdplLC63ePZf1f.UtjMKkbQ23cQoO2OKOFalDBHWAOy21."
|
|
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:
|
|
- org.jgrapes.webconlet.locallogin.LoginConlet
|
|
|
|
- target:
|
|
group: apps
|
|
version: v1
|
|
kind: Deployment
|
|
name: vm-operator
|
|
patch: |-
|
|
- op: replace
|
|
path: /spec/template/spec/containers/0/image
|
|
value: docker-registry.lan.mnl.de/vmoperator/org.jdrupes.vmoperator.manager:test
|
|
- op: replace
|
|
path: /spec/template/spec/containers/0/imagePullPolicy
|
|
value: Always
|
|
- op: replace
|
|
path: /spec/replicas
|
|
value: 0
|
|
|