...
Change to your user's home directory on the server and create a new text file
values.yaml
with the following content:Code Block global: domain: "<your-domain>" instance: "smartfacts-poc" registry: "repo.mid.de" repologin: <login provided by MID> cert: crtFullChain: "<FULL-CHAIN-CERT-BASE64>" key: "<CERT-KEY-BASE64>" ingress: enabled: true # if you use nginx as ingress controller please comment in this line: #ingressClassType: "nginx" env: genoslc: tool: type: "" # insert "CB" for Codebeamer or "JA" for Jama url: "" mailservice: enabled: true filterEnabled: "false" serviceType: "dummy|smtp|aws" sender: "noreply@yourdomain" smtp: host: "" port: "25" startTLS: true SSLOnConnect: false username: "" password: "" aws: region: "AWS-Region" key: "AWS-Key" secret: "AWS-Secret"
Replace the value of the domain property with your domain name.
Replace the placeholder of the crtFullChain property with the content of the file
chain.crt.base64
.Replace the placeholder of the key property with the content of the
key.base64
file.Replace the mailservice.serviceType with either
dummy
(Mailservice is not sending any emails) orsmtp
oraws
Fill out the mailservice variables to your needs
Save the
values.yaml
file.
Install Smartfacts
...