Szymon Szóstak
05/25/2023, 5:50 PMZay Hanlon
05/25/2023, 5:59 PMSzymon Szóstak
05/25/2023, 6:13 PMZay Hanlon
05/25/2023, 7:00 PMRobert Fairburn
05/25/2023, 7:03 PM% helm list
NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION
fleet default 1 2023-05-25 14:02:42.554451 -0500 CDT failed fleet-v5.0.1 v4.32.0
Szymon Szóstak
05/25/2023, 7:06 PMRobert Fairburn
05/25/2023, 7:08 PM% helm repo add fleet <https://fleetdm.github.io/fleet/charts>
"fleet" has been added to your repositories
% helm search repo
NAME CHART VERSION APP VERSION DESCRIPTION
fleet/fleet v5.0.1 v4.32.0 A Helm chart for Fleet
Szymon Szóstak
05/25/2023, 7:12 PMRobert Fairburn
05/25/2023, 7:16 PMhelm repo add
, this is the one-liner I'd use:
helm upgrade --install fleet fleet \
--namespace <your_namespace> \
--repo <https://fleetdm.github.io/fleet/charts> \
--values values.yaml
Szymon Szóstak
05/25/2023, 7:25 PMRobert Fairburn
05/25/2023, 7:35 PMfleet/fleet
in that case was repo/chart
since I called my repo fleet
when I added it.Szymon Szóstak
05/25/2023, 7:36 PMapiVersion: <http://source.toolkit.fluxcd.io/v1beta2|source.toolkit.fluxcd.io/v1beta2>
kind: HelmRepository
metadata:
name: fleetdm
namespace: fleetdm
spec:
url: <https://fleetdm.github.io/fleet/charts>
interval: 24h
release.yaml
apiVersion: <http://helm.toolkit.fluxcd.io/v2beta1|helm.toolkit.fluxcd.io/v2beta1>
kind: HelmRelease
metadata:
name: fleet
namespace: fleetdm
spec:
releaseName: fleet
chart:
spec:
chart: fleet
sourceRef:
kind: HelmRepository
name: fleetdm
namespace: fleetdm
version: "v5.0.1"
values:
- values.yaml
Robert Fairburn
05/25/2023, 7:42 PMSzymon Szóstak
05/25/2023, 7:45 PMRobert Fairburn
05/25/2023, 7:50 PMhelm search repo
actually tries to search for a chart name inside of the repos you have installed, so if you installed the repo via helm repo add <name> <url>
So what I had to do to get helm repo add fleet <https://fleetdm.github.io/fleet/charts>
in order to get the search to work.
then you could do a helm search repo fleet
and it would look for a chart named fleet
Or helm search repo fleet --version v5.0.0
if you wanted to search the previous version of the chart.Szymon Szóstak
05/25/2023, 7:51 PMRobert Fairburn
05/25/2023, 7:52 PMSzymon Szóstak
05/26/2023, 6:42 AM