Quick Start Guide
This guide walks through deploying NICo end-to-end: from building containers to discovering your first managed host. The core deployment is orchestrated by setup.sh in the helm-prereqs/ directory, which installs all prerequisites and NICo components in the correct order.
Before starting, review the Prerequisites for hardware, networking, software, and BMC/OOB requirements.
Step 1 — Build NICo Containers
Build all NICo container images from source on Ubuntu 24.04. This produces images for Infra Controller Core, DPU BFB artifacts, and the admin CLI.
Refer to the Building NICo Containers manual for full build instructions, including x86_64 and aarch64 cross-compilation steps.
Push the built images to your container registry before proceeding.
Step 2 — Prepare the Kubernetes Cluster
NICo requires a Kubernetes cluster with at least three schedulable nodes (Ready, not tainted NoSchedule/NoExecute) for HA Vault and PostgreSQL. NICo does not provision the cluster itself—operators are expected to provision their own Kubernetes cluster that meets the requirements below using their preferred tooling (kubeadm, Kubespray, managed K8s, etc.).
Validated baseline:
The cluster must have:
net.bridge.bridge-nf-call-iptables=1andnet.ipv4.ip_forward=1on every node.- DNS resolution working (
kubernetes.default.svc.cluster.localresolves on every node). - Network connectivity to your container registry.
Site controller node DPU requirements
DPUs are generally preferred in nodes hosting the NICo control plane components, but not strictly required. DPUs in these nodes are, however, the configuration that NICo QA regularly tests. NICo does not provision the site controller nodes’ own DPUs — it only manages DPUs on downstream bare-metal hosts after ingestion.
If your site controller nodes are equipped with BlueField-3 DPUs, they must be fully provisioned before the Kubernetes cluster is set up. Specifically, complete the following before proceeding:
-
Flash the DPU firmware using the BlueField Firmware Bundle for the tested BlueField-3 software versions.
-
Configure the Bluefield-3 device in DPU mode (operating mode).
-
Ensure the DPU ARM OS is booted and reachable via its management interface.
-
Verify that the DPU can connect to the outside world with
curl -I https://www.google.com
Refer to the NVIDIA DOCA 3.2.2 download archive for firmware flashing instructions and the BlueField Firmware Bundle.
Required tools (local machine)
The following tools must be installed on the machine that you will use to run setup.sh—not on the Kubernetes cluster itself.
The helmfile tool requires the helm-diff plugin. Install it as follows:
Step 3 — Configure the Site
Review this entire step before running setup.sh and complete every item that applies to your environment. Missing required values can cause setup to fail or produce an incorrectly configured deployment that is hard to fix afterward.
3a. Set Deployment Environment Variables
NICO_IMAGE_REGISTRY is used for both NICo Core (<registry>/nvmetal-carbide) and NICo REST (<registry>/nico-rest-*). Push all images to this registry before running setup. DPF operator/DOCA images pull anonymously from public NGC by default; to mirror or self-build them into your registry, see helm-prereqs → DPF images and registries.
For authenticated NGC pulls, obtain an API key at ngc.nvidia.com → API Keys → Generate Personal Key. You do not need to set REGISTRY_PULL_SECRET when images are public, preloaded, or an existing pull secret is configured in the values files.
3b. Set your Site Name
Open helm-prereqs/values.yaml and change siteName from the placeholder to your actual site identifier:
This value is injected into every postgres pod as the TMP_SITE environment variable. It must match the sitename in the NICo Core siteConfig block below.
To tune PostgreSQL resources for your node capacity (the defaults are conservative for dev), edit the following values:
3c. Configure NICo Core Site Deployment
Open helm-prereqs/values/nico-core.yaml and update the following values:
-
API hostname: The external DNS name for the Infra Controller Core API:
-
siteConfigTOML block: The site identity, network topology, and resource pools. These fields are most likely to differ per site:
All fields are documented with inline comments in the file.
Define the site networks to create at startup using the
Initial Network Configuration
requirements. An IPv4 prefix requires a gateway; an IPv6-only definition can
omit it. DPU provisioning requires an admin segment with an IPv4 prefix and
gateway. Do not use empty strings for address fields. The [pools.lo-ip],
[pools.vlan-id], and [pools.vni] ranges must be non-empty.
The following fields are safe to leave as empty arrays: dhcp_servers, ntp_servers, and site_fabric_prefixes. Keep required fields in the TOML block; optional network fields follow the initial network configuration requirements above.
3d. NICo REST source tree
NICo REST lives in this repository under rest-api/. The Helm charts, kustomize bases, and helper scripts that setup.sh uses for Phase 7 are resolved in-tree automatically—there is no separate repository to clone and no NCX_REPO to set. preflight.sh errors out only if rest-api/ is missing from the checkout.
3e. Configure NICo REST Authentication
The default configuration uses the dev Keycloak instance that setup.sh deploys automatically. No changes are needed if you’re running a dev/test environment.
For production, or if you are using your own IdP, edit the helm-prereqs/values/nico-rest.yaml file as follows:
Option 1: Use your own Keycloak or OIDC-compatible IdP
Option 2: Disable Keycloak and use a generic OIDC issuer
When keycloak.enabled: false, the Keycloak deployment is still created by setup.sh, but nico-rest-api will not use it for token validation.
Optional: Expose NICo REST over TLS with Ingress
By default, setup.sh exposes nico-rest-api through a NodePort in helm-prereqs/values/nico-rest.yaml. To expose it through a fully qualified domain name with TLS, enable the nico-rest-api ingress and configure its certificate settings in that file:
With this managed-certificate setup, ingress.hosts is the only place the DNS name appears. The chart adds every host to the ingress spec.tls block and to the certificate dnsNames, and uses the first host as the certificate common name, so a host that is renamed here stays covered by TLS. Supplying your own ingress.tls or certificate.dnsNames replaces the corresponding derived list, and the name then has to appear there too. The chart rejects an override that leaves an ingress.hosts entry out, under the rule that applies to each list: ingress.tls[].hosts has to name the host exactly, because that is how an ingress controller keys the virtual host it terminates TLS on, while certificate.dnsNames accepts a wildcard covering one label, as X.509 SAN matching does.
Two settings are defaults rather than something to configure. ingress.annotations carries ingress.kubernetes.io/force-ssl-redirect: "true", because a spec.tls block alone leaves port 80 serving the API in cleartext. And the chart rejects ingress.enabled together with nodePort.enabled.
The chart creates a cert-manager Certificate for the ingress TLS Secret when ingress.certificate.enabled: true. The certificate is issued by the REST stack’s nico-rest-ca-issuer, so this is a quick self-signed/private-CA setup suitable for lab and site-local deployments. If your cluster already has a TLS Secret for the domain, set ingress.certificate.enabled: false and set ingress.tls to point at that existing Secret.
The ingress routes to the chart-managed nico-rest-api Service on service.port; the API pod still serves plain HTTP internally and does not need TLS-specific configuration. If your cluster does not already have an ingress controller, run setup with the optional Contour/Envoy controller:
Use an ingress controller the cluster already has
Nothing in the rendered Ingress is Contour-specific, so skip --install-contour and point ingress.className at your own controller’s class. The contour default only reflects the controller setup.sh can install for you. To serve a TLS Secret your own issuer populates, set ingress.certificate.enabled: false and list the Secret in ingress.tls:
Note that ingress.tls[].hosts names the concrete host even though the Secret holds a wildcard certificate. Contour keys its secure virtual host by the literal string there and attaches a route only on an exact match, so a *.mysite.example.com entry would leave this route with no HTTPS virtual host at all. The chart rejects any ingress.hosts entry that ingress.tls[].hosts does not name exactly. The wildcard certificate itself still works, and certificate.dnsNames does accept wildcards, since X.509 SAN matching covers one label.
Three things differ from the Contour path:
- The redirect annotation is controller-specific. A
spec.tlsblock does not redirect plaintext HTTP on its own. The chart defaultsingress.annotationstoingress.kubernetes.io/force-ssl-redirect: "true", which Contour honours, and ingress-nginx wantsnginx.ingress.kubernetes.io/force-ssl-redirectinstead, as the example above sets. Overriding the map merges with the default, so add your controller’s annotation rather than assuming the inherited one applies. - Annotation values must be quoted strings. Kubernetes annotations are
map[string]string, so an unquotedtrueor a bare number is rejected at apply time withcannot unmarshal bool into Go struct field ObjectMeta.metadata.annotations of type string. - The Secret must live in the
nico-restnamespace.spec.tls[].secretNameresolves in the Ingress’s own namespace, so copy or mirror a site-wide wildcard Secret intonico-rest. Contour additionally needs aTLSCertificateDelegationto read one from elsewhere.
Keeping ingress.certificate.enabled: true also works with a foreign controller; the chart issues the Secret through cert-manager and your controller serves it. The DNS step below still applies, but read the external address from your controller’s own Service instead of contour-envoy.
Point DNS at the ingress and trust the CA
The Ingress does not answer until the host resolves to the Envoy LoadBalancer address. MetalLB assigns that address from vip-pool-external, so populate the addresses field of that pool in helm-prereqs/values/metallb-config.yaml before installing Contour, then read the assigned address:
Create an A record for rest-api.mysite.example.com pointing at it. health-check.sh prints the same address under its Contour/Envoy section.
Because nico-rest-ca-issuer is a CA issuer backed by the site CA in ca-signing-secret, clients reject the certificate until they trust that CA. Export the bundle from the issued Secret and confirm the chain:
Verify return code: 0 (ok) confirms Envoy is serving the issued certificate and that the CA bundle validates it. Pass the same file to API clients, for example curl --cacert nico-rest-ca.crt, and use https://rest-api.mysite.example.com as the base URL in place of the NodePort address.
For a certificate issued by a public CA instead, set ingress.certificate.enabled: false and point ingress.tls at a Secret your own issuer populates.
3f. Review site-agent Config
The defaults in helm-prereqs/values/nico-site-agent.yaml point at the Zalando-managed nico-pg-cluster (DB_ADDR: nico-pg-cluster.postgres.svc.cluster.local, DB_DATABASE: nico_rest), which is the same cluster used by nico-rest-api. No changes are needed for a standard deployment.
DB_USER and DB_PASSWORD are injected at runtime from the db-creds Kubernetes Secret (created by the nico-rest-common sub-chart during Phase 7g). The Secret is referenced via secrets.dbCreds in the site-agent values.
For a non-standard database, override the connection config:
3g. Configure MetalLB
MetalLB provides LoadBalancer IPs for NICo Core services (nico-api, DHCP, DNS, PXE, SSH console). Without it, those services stay in <pending> state and the site is unreachable.
NICo includes a built-in NTP service (nico-ntp). This is a 3-replica chrony StatefulSet where each replica gets its own MetalLB VIP.
To use the service, set nico-ntp.externalService.enabled: true, assign three VIPs from your internal pool via nico-ntp.externalService.perPodAnnotations, and set nico-dhcp.config.kea.hookParameters.ntpServer to a comma-separated list of those same VIPs so DPUs receive them over DHCP. Enterprise NTP server IPs in siteConfig.ntp_servers continue to be used for BMC pre-ingestion time sync independently of nico-ntp.
Edit helm-prereqs/values/metallb-config.yaml—this file ships pre-populated with example values. Replace all values labeled # EXAMPLE with your site-specific configuration before running setup.sh.
Add or remove BGPPeer blocks to match your node count, with one block per worker node.
BGPPeer and BGPAdvertisement sections and uncomment the L2Advertisement section at the bottom of the file.3h. Assign Service VIPs
Each NICo Core service that exposes a LoadBalancer needs a specific, stable IP from your MetalLB pool. Without explicit assignments, MetalLB picks IPs randomly on each install, which means your DHCP relay, DNS records, PXE config, and API hostname cannot be pre-configured and will break on redeploy.
Open helm-prereqs/values/nico-core.yaml and update the VIP for each service:
All IPs must be within the IPAddressPool ranges you defined in values/metallb-config.yaml and must be unique across services.
- nico-dhcp Note:
externalService.enabled: truemust be set explicitly; it defaults to false in the chart. - nico-dns Note: Use
perPodAnnotations(a list) rather thanannotationsbecause each replica gets its own VIP. - nico-api IP and DNS Note: The nico-api VIP must resolve in external DNS to the
hostnameyou set in Step 3c.
3i. (Optional) Pre-set the Site UUID
On a fresh install, you normally leave NICO_SITE_UUID unset. setup.sh resolves the UUID in several ways: it tries to reuse the UUID from a prior install (site-agent ConfigMap); if that fails, it adopts an existing REST site with the same name, or mints a UUID and seeds the site record itself (see Step 5). You only need to set the UUID explicitly to bind the site-agent to a site that already exists:
The resolved UUID is used as the Temporal namespace for the site and as the CLUSTER_ID passed to the site-agent. On reruns the identity stays stable; if you change NICO_SITE_UUID to rebind, setup.sh detects the stale registration and the bootstrap re-registers automatically.
3j. Validate Configuration
Run the pre-flight check to catch issues before deployment:
The preflight.sh script is also run automatically at the start of every setup.sh invocation.
The preflight.sh script checks the following:
For air-gapped clusters, the per-node checks pull busybox:1.36 by default. If your cluster cannot reach Docker Hub, set PREFLIGHT_CHECK_IMAGE to a local mirror:
Step 4 — Run the Setup Script
Run the setup.sh script as follows:
You can combine common options as needed:
The setup.sh script installs all prerequisites and NICo components in sequential phases:
When upgrading a deployment that previously bundled PSM and NSM, complete the preserve-or-overwrite steps before continuing.
The following components are deployed:
For manual phase-by-phase installation, re-running individual phases, or debugging failures, refer to the Reference Installation guide.
Step 5 — Verify the Site Controller
Before ingesting hosts, verify that all site controller components are healthy.
Check That All Pods Are Running
Verify That the Site-agent Is Connected
Look for the “successfully connected to server” message in the logs.
Verify That the LoadBalancer IPs Are Assigned
All LoadBalancer services should have an external IP from your IPAddressPool ranges. If any show <pending>, MetalLB has not assigned an IP. Check BGP session status on your TOR switches and verify values/metallb-config.yaml has correct peer addresses.
Verify That DHCP and PXE Are Serving
Both external IPs should be within your internal VIP pool range.
Acquire a Keycloak Access Token
This section only applies if keycloak.enabled: true in values/nico-rest.yaml (the default). If you disabled the bundled Keycloak and pointed nico-rest-api at your own IdP, obtain tokens from that IdP instead.
The setup.sh script deploys a dev Keycloak instance with a nico realm pre-loaded with the ncx-service client (M2M / client_credentials).
localhost. The resulting JWT iss claim will not match what nico-rest-api expects, and the token will be rejected.Use the helper script, which runs curl from a throw-away in-cluster pod:
Verify the token against nico-rest-api:
Set up nicocli and Verify your Site
NICo has two CLIs that serve different purposes:
nicocli is built from the rest-api/ directory. nico-admin-cli is built from crates/admin-cli.
1. Build and Install the CLI
2. Generate the Default Config File
3. Port-forward nico-rest-api to localhost
4. Edit ~/.nico/config.yaml
5. Bootstrap the Org (Required One-Time Call)
This GET endpoint lazily initializes the org on first call as follows:
- Checks if service account is enabled in the auth config
- Creates an InfrastructureProvider for the org if one doesn’t exist
- Creates a Tenant for the org if one doesn’t exist
- Creates a TenantAccount linking the provider and tenant if one doesn’t exist, already in
Readystatus with thetargetedInstanceCreationcapability enabled - Returns the service account status with the provider and tenant IDs
Without this call, site operations return 404. Subsequent calls are read-only.
6. Verify your Site
Do not run nicocli site create. setup.sh Phase 7g already bootstraps and registers the site automatically via the nico-rest-site-agent bootstrap Job (POST /v1/site to nico-rest-site-manager), obtains a one-time password (OTP), and stores the registration in the site-registration Secret. Running nicocli site create would create a second site that the already-deployed site-agent cannot use — the site-agent is bound to the UUID generated during setup and cannot be reassigned without a full redeploy.
This is a one-to-one deployment: one site per NICo installation. The site is managed by setup.sh; do not create additional sites manually.
To verify the site was registered correctly:
You should see exactly one site matching the UUID in NICO_SITE_UUID (or the UUID auto-generated by setup.sh if NICO_SITE_UUID was not set). You can also confirm the site-agent registered successfully:
Overall Health Check
Run the following commands to verify that all components are healthy:
For troubleshooting resources, refer to the source-of-truth guides linked from the Reference Installation guide.
Step 6 — Connect the OOB Network
Configure the out-of-band network to relay BMC DHCP requests to the NICo DHCP service.
-
Configure the DHCP relay on your OOB switches to forward DHCP requests to the
nico-dhcpLoadBalancer VIP (assigned in Step 3h). -
Verify DHCP requests are reaching NICo by checking the DHCP service logs:
For detailed OOB network requirements, refer to the BMC and Out-of-Band Setup guide.
Step 7 — Discover Your First Host
This step uses nico-admin-cli, the gRPC CLI for NICo Core. Build it from the infra-controller repo:
Alternatively, use the containerized version bundled in the nico-api pod (available at /opt/nico/nico-admin-cli inside the container).
The <api-url> in the commands below is the NICo Core gRPC API endpoint. This is the nico-api hostname configured in Step 3c, not the REST API used in Step 5. The format is typically https://api-<ENVIRONMENT_NAME>.<SITE_DOMAIN_NAME>. You can also retrieve it from the LoadBalancer VIP:
Set Site-wide Credentials
Configure the credentials NICo will apply to BMCs and UEFI after ingestion. These commands write to the configured credential store: Vault by default, or Postgres when the site was set up as described in Day 0 Credential Store.
nico-admin-cli accepts these passwords only as command-line arguments, so each
one lands in your shell history and is visible in the process argument list
while the command runs. Run them from a shell with history disabled, and clear
any history file that captured them.
Site Explorer requires all three — the site-wide BMC root and both the host
and dpu UEFI site defaults. It checks them before contacting any BMC and fails
each iteration with MissingCredentials while any one is missing.
When DPF is enabled, the site-wide BMC root credential is also mirrored into the
DPF bmc-shared-password Secret; refer to
Set the site-wide BMC root credential
for the DPF-specific details and for how to seed it ahead of time instead.
Upload the Expected Machines Manifest
Prepare an expected_machines.json with the BMC MAC address, factory default credentials, and chassis serial number for each host:
DPF is the per-host default. With no dpf_enabled field, each host is DPF-provisioned (the field defaults to true). Add "dpf_enabled": false to keep a host on the deprecated iPXE path. DPF-based provisioning also requires [dpf].enabled = true in the site config, which setup.sh sets by default (unless --skip-dpf). Refer to DPF Setup.
Upload the manifest:
Approve the host for ingestion
NICo uses Measured Boot with TPM v2.0 to enforce cryptographic identity:
NICo will now discover the host via Redfish, pair it with its DPU(s), provision the DPU, and bring the host to a ready state. For more details, refer to the Ingesting Hosts guide.
Monitor Host Discovery
Upgrading
To upgrade an existing NICo installation to a new release, check out the target release, and re-run setup.sh with the new image tags. setup.sh is idempotent: each phase upgrades its component in-place while preserving Vault state, PostgreSQL data, MetalLB site config, and the site UUID.
Refer to the Upgrading NICo guide for the pre-upgrade checklist, version-specific notes (including the 2.0-to-2.1 MetalLB CRD ownership migration), and rollback considerations.
Teardown
To perform teardown, run the following command:
This removes NICo REST, NICo Core, all helmfile releases, cluster-scoped resources, namespaces, and released PersistentVolumes. For details on what clean.sh does and the removal order, refer to the Reference Installation guide.