helm

Provides comprehensive Helm chart development and deployment capabilities for the Golden Armada AI Agent Fleet Platform.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "helm" with this command: npx skills add lobbi-docs/claude/lobbi-docs-claude-helm

Helm Skill

Provides comprehensive Helm chart development and deployment capabilities for the Golden Armada AI Agent Fleet Platform.

When to Use This Skill

Activate this skill when working with:

  • Helm chart creation and modification

  • Values file configuration

  • Template development

  • Chart deployment and upgrades

  • Release management

Quick Reference

Common Commands


Install/Upgrade

helm install   -n 
helm upgrade --install   -n 
helm upgrade --install golden-armada ./deployment/helm/golden-armada -n agents

With values

helm install   -f values.yaml
helm install   --set key=value

List/Status

helm list -n agents
helm status  -n agents
helm history  -n agents

Uninstall

helm uninstall  -n agents

Debug

helm template  
helm lint 
helm get values  -n agents
helm get manifest  -n agents

Chart Structure

golden-armada/
├── Chart.yaml
├── values.yaml
├── templates/
│   ├── _helpers.tpl
│   ├── deployment.yaml
│   ├── service.yaml
│   ├── configmap.yaml
│   ├── secret.yaml
│   └── ingress.yaml
└── charts/

Chart.yaml

apiVersion: v2
name: golden-armada
description: AI Agent Fleet Platform
type: application
version: 1.0.0
appVersion: "1.0.0"
dependencies:

- name: redis
version: "17.x.x"
repository: https://charts.bitnami.com/bitnami
condition: redis.enabled

Values.yaml


Global settings

replicaCount: 2
image:
repository: golden-armada/agent
tag: latest
pullPolicy: IfNotPresent

Resources

resources:
limits:
cpu: 500m
memory: 512Mi
requests:
cpu: 100m
memory: 128Mi

Service

service:
type: ClusterIP
port: 80
targetPort: 8080

Ingress

ingress:
enabled: true
className: nginx
hosts:
- host: agents.example.com
paths:
- path: /
pathType: Prefix

Environment

env:

- name: LOG_LEVEL
value: "info"

Secrets (use external secret manager in production)

secrets:
anthropicApiKey: ""

Template Examples

_helpers.tpl

{{- define "golden-armada.fullname" -}}
{{- printf "%s-%s" .Release.Name .Chart.Name | trunc 63 | trimSuffix "-" }}
{{- end }}

{{- define "golden-armada.labels" -}}
helm.sh/chart: {{ .Chart.Name }}-{{ .Chart.Version }}
app.kubernetes.io/name: {{ .Chart.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
{{- end }}

deployment.yaml

apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ include "golden-armada.fullname" . }}
labels:
{{- include "golden-armada.labels" . | nindent 4 }}
spec:
replicas: {{ .Values.replicaCount }}
selector:
matchLabels:
app.kubernetes.io/name: {{ .Chart.Name }}
template:
metadata:
labels:
app.kubernetes.io/name: {{ .Chart.Name }}
spec:
containers:
- name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
ports:
- containerPort: {{ .Values.service.targetPort }}
resources:
{{- toYaml .Values.resources | nindent 12 }}
env:
{{- toYaml .Values.env | nindent 12 }}

Golden Armada Commands


Deploy to development

helm upgrade --install golden-armada ./deployment/helm/golden-armada 

-n agents 

-f deployment/helm/golden-armada/values-dev.yaml

Deploy to production

helm upgrade --install golden-armada ./deployment/helm/golden-armada 

-n agents 

-f deployment/helm/golden-armada/values-prod.yaml

Dry run

helm upgrade --install golden-armada ./deployment/helm/golden-armada 

-n agents --dry-run --debug

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

devops practices

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

harness-code-integration

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

helm-development

No summary provided by upstream source.

Repository SourceNeeds Review