
Install HO AWS
โ 527by openshift ยท part of openshift/hypershift
Install HyperShift Operator with private AWS and external-dns settings.
This is the playbook your agent receives when the skill activates โ you don't need to read it to use the skill, but it's here to audit before installing.
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
Parameters
HO_IMAGEshould 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_REGIONNotes
- Build the CLI first:
make hypershift(this produces./bin/hypershift). - Ensure the AWS credentials file exists and is readable.
- The
MGMT_KUBECONFIGmust point to your management cluster.
npx skills add https://github.com/openshift/hypershift --skill Install HO AWSRun this in your project โ your agent picks the skill up automatically.
Prerequisites
Source the environment file before using this skill:
source dev/claude-env.shEnvironment 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 |
No common issues documented yet. If you hit a problem, the repository's GitHub Issues page is the best place to look.
Licensed under Apache-2.0โ you can use, modify, and redistribute it under that license's terms.
View the full license file on GitHub โ