https://github.com/hops-ops/helm-aws-cert-manager
Installs cert-manager with AWS Pod Identity for Route53 DNS01 challenges
https://github.com/hops-ops/helm-aws-cert-manager
aws cert-manager crossplane eks helm kubernetes xrd
Last synced: 4 months ago
JSON representation
Installs cert-manager with AWS Pod Identity for Route53 DNS01 challenges
- Host: GitHub
- URL: https://github.com/hops-ops/helm-aws-cert-manager
- Owner: hops-ops
- Created: 2026-01-14T08:21:42.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-02-19T21:30:25.000Z (4 months ago)
- Last Synced: 2026-02-19T22:31:27.562Z (4 months ago)
- Topics: aws, cert-manager, crossplane, eks, helm, kubernetes, xrd
- Language: KCL
- Size: 37.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# helm-aws-cert-manager
Installs cert-manager with AWS Pod Identity for Route53 DNS01 challenges.
## Overview
Composes the base `helm.hops.ops.com.ai/CertManager` XRD with `aws.hops.ops.com.ai/PodIdentity`.
Automatically provisions IAM role and Pod Identity association for cert-manager's service account.
## Usage
```yaml
apiVersion: helm.aws.hops.ops.com.ai/v1alpha1
kind: CertManager
metadata:
name: cert-manager
namespace: default
spec:
clusterName: my-cluster
aws:
region: us-east-1
```
With custom values:
```yaml
apiVersion: helm.aws.hops.ops.com.ai/v1alpha1
kind: CertManager
metadata:
name: cert-manager
namespace: default
spec:
clusterName: production-cluster
namespace: cert-manager
values:
prometheus:
enabled: true
aws:
region: us-west-2
rolePrefix: prod-
```
## What Gets Created
1. `helm.hops.ops.com.ai/CertManager` - the base cert-manager Helm release
2. `aws.hops.ops.com.ai/PodIdentity` - IAM role + Pod Identity association with Route53 permissions
## Development
```bash
make render
make validate
make test
```