Skip to content

Commit f82c671

Browse files
committed
[GPUHEALTH-1408] chore: finalize fleet intelligence naming in release and packaging text
Signed-off-by: Jingxiang Zhang <jingzhang@nvidia.com>
1 parent 04b6ca0 commit f82c671

File tree

5 files changed

+13
-28
lines changed

5 files changed

+13
-28
lines changed

.goreleaser.yaml

Lines changed: 5 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,11 @@
66
# goreleaser release --snapshot --clean # Create packages without releasing
77
# goreleaser release --clean # Full release (requires git tag)
88
#
9-
# Prerequisites for private GitLab dependencies:
10-
# - SSH key configured for gitlab-master.nvidia.com:12051
11-
# - Access to gpu-health/gpud repository
12-
#
139
# Prerequisites for ARM64 cross-compilation:
1410
# - sudo apt-get install gcc-aarch64-linux-gnu g++-aarch64-linux-gnu
1511

1612
version: 2
1713

18-
# Global environment variables for private GitLab access
19-
env:
20-
- GOPRIVATE=gitlab-master.nvidia.com/*
21-
- GONOPROXY=gitlab-master.nvidia.com/*
22-
- GONOSUMDB=gitlab-master.nvidia.com/*
23-
24-
# Git configuration for private repository access
25-
before:
26-
hooks:
27-
- git config --global url."ssh://git@gitlab-master.nvidia.com:12051/".insteadOf "https://gitlab-master.nvidia.com/"
28-
2914
# Build configuration
3015
builds:
3116
- id: fleetint
@@ -75,10 +60,9 @@ nfpms:
7560
file_name_template: "fleetint_{{ .Version }}_{{ if eq .Arch \"amd64\" }}amd64{{ else if eq .Arch \"arm64\" }}arm64{{ else }}{{ .Arch }}{{ end }}"
7661
vendor: NVIDIA Corporation
7762
homepage: https://github.com/NVIDIA/fleet-intelligence-agent
78-
maintainer: NVIDIA GPU Health Team
63+
maintainer: NVIDIA Fleet Intelligence Team
7964
description: |
80-
NVIDIA Fleet Intelligence Agent - Lightweight GPU health monitoring and reporting agent
81-
for NVIDIA GPU infrastructure.
65+
NVIDIA Fleet Intelligence Agent - Host agent for GPU telemetry collection and attestation.
8266
section: utils
8367
priority: optional
8468
formats:
@@ -116,10 +100,9 @@ nfpms:
116100
file_name_template: "fleetint-{{ .Version }}-1.{{ if eq .Arch \"amd64\" }}x86_64{{ else if eq .Arch \"arm64\" }}aarch64{{ else }}{{ .Arch }}{{ end }}"
117101
vendor: NVIDIA Corporation
118102
homepage: https://github.com/NVIDIA/fleet-intelligence-agent
119-
maintainer: NVIDIA GPU Health Team
103+
maintainer: NVIDIA Fleet Intelligence Team
120104
description: |
121-
NVIDIA Fleet Intelligence Agent - Lightweight GPU health monitoring and reporting agent
122-
for NVIDIA GPU infrastructure.
105+
NVIDIA Fleet Intelligence Agent - Host agent for GPU telemetry collection and attestation.
123106
section: Applications/System
124107
formats:
125108
- rpm
@@ -169,7 +152,7 @@ release:
169152
header: |
170153
## NVIDIA Fleet Intelligence Agent v{{.Version}}
171154
172-
This release includes GPU health monitoring and reporting capabilities for NVIDIA GPU infrastructure.
155+
This release includes a host agent for GPU telemetry collection and attestation.
173156
174157
### Available Packages
175158

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# NVIDIA Fleet Intelligence Agent
22

3-
Lightweight Fleet Intelligence monitoring and reporting agent for NVIDIA GPU infrastructure building on top of [leptonai/gpud](https://github.com/leptonai/gpud)
3+
NVIDIA Fleet Intelligence Agent - Host agent for GPU telemetry collection and attestation.
4+
5+
Built on top of [leptonai/gpud](https://github.com/leptonai/gpud)
46

57
## Overview
68

deployments/helm/fleet-intelligence-agent/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: fleet-intelligence-agent
3-
description: GPU health agent daemonset
3+
description: Fleet Intelligence Agent daemonset
44
type: application
55
version: 0.0.1
66
appVersion: "0.0.1"

deployments/packages/scripts/preinst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ set -e
33

44
case "$1" in
55
install|1)
6-
echo "Preparing to install GPU Health Agent..."
6+
echo "Preparing to install Fleet Intelligence Agent..."
77
# Warn if systemd not available
88
if [ ! -d /run/systemd/system ]; then
99
echo "[WARNING] Systemd not detected - service management will be limited"
1010
fi
1111
;;
1212
upgrade|2)
13-
echo "Preparing to upgrade GPU Health Agent${2:+ from version $2}..."
13+
echo "Preparing to upgrade Fleet Intelligence Agent${2:+ from version $2}..."
1414
;;
1515
abort-upgrade)
16-
echo "Aborting GPU Health Agent upgrade..."
16+
echo "Aborting Fleet Intelligence Agent upgrade..."
1717
;;
1818
esac

deployments/packages/systemd/fleetint.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# GPU Health Agent environment configuration
1+
# Fleet Intelligence Agent environment configuration
22
FLEETINT_FLAGS="--log-level=warn"
33
FLEETINT_COLLECT_INTERVAL="1m"
44
FLEETINT_INCLUDE_METRICS="true"

0 commit comments

Comments
 (0)