If the SSL certificate exists, update the section 'ca_signed' with the absolute path of the certificate file.
If the certificate does not exist, update the section 'self_signed' with appropriate values.
Ensure
dns_ip
and
customer_ip
are updated accordingly in
input.yaml
file.
cd /root/nps2/install/utils/
###Please provide only either self_signed to generate new SSL certificates, or provide ca_signed details to use existing certificates ###
# C in self_signed is Two letter code of your country
# ST in self_signed is Two letter code of your state or province
# L in sel_signed is Full name of your location
# O in self_sgned is Full name of your organization
# OU in self_signed is Full name of your unit, section, or group
# CN in self_signed is Domain name of your server or the public IP address of your server
self_signed:
C: ""
ST: ""
L: ""
O: ""
OU: ""
CN: ""
ca_signed:
key_file_path: ""
crt_file_path: ""
pem_file_path: ""
#Mandatory field
#customer_ip is NPS Toolkit VM IP
customer_ip: "10.x.x.x"
#Enter the DNS IP address to be configured on the NPS toolkit VM. If no DNS is available enter any reachable IP address.
dns_ip: "10.x.x.x"
#IPALLOC range for deploying kubernetes pods. User can change this value, by default it is '172.16.0.0/24',
#make sure this network does not overlap with existing infrastructure networks.
ipalloc_range_cidr: "172.16.0.0/24"
#Supported vim_type are rhocp, rhosp and vmware. If VIM is not required, then give ""(empty string).
vim_type: ""
#mode_of_installation refers to the type of rhocp cluster installation on baremetal which can be either online or offline.If vim_type
#is other than rhocp on baremetal, enter ""(empty string).
mode_of_installation: ""
#A fully qualified domain name of registry server.Provide reqistry_fqdn value only when vim_type is rhocp
#and mode_of_installation is offline, else give ""(empty string).
registry_fqdn: ""
#httpwebproxy in format http://<proxy_url>:<proxy_port> if proxy is required, else keep it empty("")
httpwebproxy: ""
#If proxy requires username and password update the below two fields else keep them empty("")
proxy_user: ""
proxy_password: ""
For more information about the parameters, see
Parameter descriptions in input.yaml file.