/install-ho-aws
Install HyperShift Operator with private AWS and external-dns settings.
$ npx -y skills add openshift/hypershift --skill install-ho-aws --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/install-ho-aws
Context preview
The summary Claude sees to decide when to auto-load this skill.
Install HyperShift Operator with private AWS and external-dns settings.
SKILL.md
install-ho-aws.SKILL.mdname: Install HO AWS
description: "Install HyperShift Operator with private AWS and external-dns settings."
Install HyperShift Operator (HO)
Use this skill to install HyperShift Operator with a custom image, external-dns, and private AWS settings.
When to Use This Skill
Use when:
- You need to install HO with a custom image
- You want external-dns configured for AWS
- You are using private AWS settings for the management cluster
- Changes to the CRDs generated APIs don't need an image rebuild, just a make api && make build
Prerequisites
Source the environment file before using this skill:
source dev/claude-env.sh
Environment Configuration
Environment variables from `dev/claude-env.sh`:
| Variable | Description | |----------|-------------| | `HO_IMAGE_REPO` | Container registry for HO images | | `AWS_CREDENTIALS` | Path to AWS credentials file | | `EXTERNAL_DNS_DOMAIN` | Domain filter for external-dns | | `OIDC_BUCKET` | S3 bucket for OIDC | | `AWS_REGION` | AWS region | | `MGMT_KUBECONFIG` | Path to management cluster kubeconfig |
Parameters
- `HO_IMAGE` should point to the image you want to install, for example `$HO_IMAGE_REPO:autonode`.
Command
Run make build first if needed
KUBECONFIG=$MGMT_KUBECONFIG \
./bin/hypershift install \
--hypershift-image $HO_IMAGE_REPO:YOUR_TAG \
--external-dns-provider=aws \
--external-dns-credentials $AWS_CREDENTIALS \
--external-dns-domain-filter=$EXTERNAL_DNS_DOMAIN \
--oidc-storage-provider-s3-bucket-name $OIDC_BUCKET \
--oidc-storage-provider-s3-credentials $AWS_CREDENTIALS \
--oidc-storage-provider-s3-region $AWS_REGION \
--private-platform=AWS \
--aws-private-creds $AWS_CREDENTIALS \
--enable-conversion-webhook=false \
--aws-private-region=$AWS_REGION
Notes
- Build the CLI first: `make hypershift` (this produces `./bin/hypershift`).
- Ensure the AWS credentials file exists and is readable.
- The `MGMT_KUBECONFIG` must point to your management cluster.
Read more
name: Install HO AWS description: "Install HyperShift Operator with private AWS and external-dns settings."
Install HyperShift Operator (HO)
Use this skill to install HyperShift Operator with a custom image, external-dns, and private AWS settings.
When to Use This Skill
Use when:
- You need to install HO with a custom image
- You want external-dns configured for AWS
- You are using private AWS settings for the management cluster
- Changes to the CRDs generated APIs don't need an image rebuild, just a make api && make build
Prerequisites
Source the environment file before using this skill:
source dev/claude-env.sh
Environment Configuration
Environment variables from `dev/claude-env.sh`:
| Variable | Description | |----------|-------------| | `HO_IMAGE_REPO` | Container registry for HO images | | `AWS_CREDENTIALS` | Path to AWS credentials file | | `EXTERNAL_DNS_DOMAIN` | Domain filter for external-dns | | `OIDC_BUCKET` | S3 bucket for OIDC | | `AWS_REGION` | AWS region | | `MGMT_KUBECONFIG` | Path to management cluster kubeconfig |
Parameters
- `HO_IMAGE` should point to the image you want to install, for example `$HO_IMAGE_REPO:autonode`.
Command
Run make build first if needed
KUBECONFIG=$MGMT_KUBECONFIG \ ./bin/hypershift install \ --hypershift-image $HO_IMAGE_REPO:YOUR_TAG \ --external-dns-provider=aws \ --external-dns-credentials $AWS_CREDENTIALS \ --external-dns-domain-filter=$EXTERNAL_DNS_DOMAIN \ --oidc-storage-provider-s3-bucket-name $OIDC_BUCKET \ --oidc-storage-provider-s3-credentials $AWS_CREDENTIALS \ --oidc-storage-provider-s3-region $AWS_REGION \ --private-platform=AWS \ --aws-private-creds $AWS_CREDENTIALS \ --enable-conversion-webhook=false \ --aws-private-region=$AWS_REGION
Notes
- Build the CLI first: `make hypershift` (this produces `./bin/hypershift`).
- Ensure the AWS credentials file exists and is readable.
- The `MGMT_KUBECONFIG` must point to your management cluster.
HyperShift is a middleware for hosting OpenShift control planes at scale that solves for cost and time to provision, as well as portability cross cloud with strong separation of concerns between management and workloads.
Repo: openshift/hypershift
Other skills on hypershift.
- /create-cpo-override
Interactively create CPO image overrides — resolves images, verifies fixes, edits overrides.yaml, and prepares a PR
Open skill - /debug-cluster
Provides systematic debugging approaches for HyperShift hosted-cluster issues. Auto-applies when debugging cluster problems, investigating stuck deletions, or troubleshooting control plane issues.
Open skill - /build-cpo-image
Build and push control-plane-operator container image. Auto-applies when testing CPO changes that require deploying to a live cluster.
Open skill - /build-ho-image
Build and push hypershift-operator container image. Auto-applies when testing HO changes that require deploying to a live cluster.
Open skill - /create-hc-aws
Create a HyperShift HostedCluster on AWS for development and testing, with optional custom CPO/HO images.
Open skill - /destroy-hc-aws
Destroy a HyperShift HostedCluster and all associated AWS infrastructure (VPC, IAM, Route53, etc.).
Open skill

