Skip to main content

Cloud Certificate Renewer

Automated HTTPS certificate renewal tool for cloud services, supporting CDN and Load Balancer products. Currently supports Alibaba Cloud, with architecture designed for multi-cloud extension.

Table of Contents

Features

  • Automatic certificate renewal for cloud CDN services (currently supports Alibaba Cloud)
  • Automatic certificate renewal for cloud Load Balancer services, supporting multiple instances with independent ports per instance (currently supports Alibaba Cloud SLB)
  • Certificate validation (domain matching, expiration checking)
  • Support for wildcard domain certificates
  • CLI support with arguments (--dry-run, --verbose, --version)
  • Multiple authentication methods:
    • Access Key authentication
    • STS (Security Token Service) temporary credentials
    • IAM Role authentication
    • OIDC (RRSA) authentication for Kubernetes
    • Service Account authentication
    • Environment variable authentication
  • Configuration via environment variables or Kubernetes Secrets
  • Comprehensive error handling and logging
  • Helm Chart deployment support
  • Integration with cert-manager and Reloader
  • Automated release workflow with multi-architecture Docker images, Helm Charts, and PyPI packages

SLB CAS Certificate Relay Path

By default, SLB certificate renewal uploads the certificate directly to the SLB certificate center (LB_CERT_SOURCE=slb). For scenarios where WAF or other services require the SLB certificate to reference a CAS-managed certificate, set LB_CERT_SOURCE=cas (environment variable name LB_CERT_SOURCE, backward compatible with SLB_CERT_SOURCE).

How It Works (cas path)

  1. Look up an existing CAS certificate by its stable name (ListUserCertificateOrder, OrderType=UPLOAD). The lookup paginates uploaded certificates and matches by name client-side — the API Keyword only matches domain/resource-ID, not the certificate name — and reuses the existing certificate when found.
  2. If not found, upload the certificate to Alibaba Cloud Certificate Management Service (CAS) via UploadUserCertificate. If a concurrent upload created a same-name certificate in the meantime (duplicate-name error), the collision is caught and the existing certificate is reused.
  3. Import the CAS certificate into SLB via UploadServerCertificate with AliCloudCertificateId and AliCloudCertificateRegionId=cn-hangzhou (the CAS China-site region; independent of LB_REGION). An existing SLB server certificate with a matching fingerprint is reused when present (idempotent); otherwise a new one is created.
  4. Bind the certificate to the HTTPS listener.

CDN and the default slb path are unaffected.

Certificate Accumulation (operational note)

Certificate renewal does not delete old certificates. Be aware of the accumulation behavior:

  • CAS certs: the cas path uploads under a stable name derived from the SLB instance ID and a SHA-1 fingerprint of the certificate ({instance_id}-{fingerprint[:8]}). When the certificate content changes (e.g. a real renewal), the fingerprint changes, producing a new CAS certificate under a new name. The previous CAS certificate is left in place and is never removed.
  • SLB server certificates: on the cas path, an existing SLB server certificate with a matching fingerprint is reused when one is visible on the first page of DescribeServerCertificates; otherwise a new SLB server certificate entry is created. Over many renewals this can leave orphaned CAS and SLB certificate entries.

Neither path garbage-collects. Schedule periodic cleanup (or a lifecycle policy) in the Alibaba Cloud console to retire stale CAS certificates and unused SLB server certificates.

Required CAS Permissions

When using LB_CERT_SOURCE=cas, grant the following additional RAM permissions to the AccessKey or RAM Role:

  • yundun-cert:UploadUserCertificate — upload a certificate to CAS
  • yundun-cert:ListUserCertificateOrder — look up an existing uploaded certificate by name (idempotency)

Both actions are included in the system policy AliyunYundunCertFullAccess.

For RRSA/OIDC scenarios (Kubernetes), append the CAS permissions to the RAM Role used by the Service Account.

Kubernetes Deployment

Prerequisites

Required:

  • Kubernetes cluster

Recommended:

  • cert-manager (for automatic certificate acquisition and renewal)
  • Reloader (for monitoring certificate Secret changes and automatically triggering Deployment redeployment)

Deployment

# 1. Create Secret (using generic naming, recommended)
kubectl create secret generic cloud-credentials \
  --from-literal=access-key-id=YOUR_KEY \
  --from-literal=access-key-secret=YOUR_SECRET

# Or use legacy naming (backward compatible)
# kubectl create secret generic alibaba-cloud-credentials \
#   --from-literal=access-key-id=YOUR_KEY \
#   --from-literal=access-key-secret=YOUR_SECRET

# 2. Deploy using Helm
helm install cloud-cert-renewer ./helm/cloud-cert-renewer \
  --set serviceType=cdn \
  --set cdn.domainName=your-domain.com

For detailed deployment instructions and troubleshooting, see:

How It Works

  1. cert-manager automatically acquires/updates Let's Encrypt certificates and updates the cert-secret Secret
  2. Reloader detects Secret changes and triggers Deployment redeployment
  3. Init container starts, reads certificate from Secret, and calls cloud service API to update certificate
  4. Init container exits after completion
  5. Main container (placeholder) keeps running to ensure Deployment status is normal

Development

For development and testing, see DEVELOPMENT.md for detailed setup instructions.

CLI Installation

Using pip (PyPI)

You can install the tool directly from PyPI:

pip install cloud-cert-renewer

After installation, you can run the tool using the cloud-cert-renewer command:

# View help
cloud-cert-renewer --help

# Run in dry-run mode
cloud-cert-renewer --dry-run --verbose

# Run with environment variables
export SERVICE_TYPE=cdn
export CLOUD_ACCESS_KEY_ID=your_key
...
cloud-cert-renewer

Documentation

Contributing

We welcome contributions! Please see CONTRIBUTING.md for guidelines, including the language policy.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cloud_cert_renewer-0.3.2.tar.gz (288.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cloud_cert_renewer-0.3.2-py3-none-any.whl (58.5 kB view details)

Uploaded Python 3

File details

Details for the file cloud_cert_renewer-0.3.2.tar.gz.

File metadata

  • Download URL: cloud_cert_renewer-0.3.2.tar.gz
  • Upload date:
  • Size: 288.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.10.20

File hashes

Hashes for cloud_cert_renewer-0.3.2.tar.gz
Algorithm Hash digest
SHA256 61a58a1ed4eccd4dd69dd4d5f209a59b6796968fc5c4d5a2d75bcf96a4d07f43
MD5 015b6951ad6db20e751ca2003d26a142
BLAKE2b-256 923e10e090a4b4f3dbc0e6856f1f3ebc7e54d38ff3a822083541f5874e636c9b

See more details on using hashes here.

File details

Details for the file cloud_cert_renewer-0.3.2-py3-none-any.whl.

File metadata

File hashes

Hashes for cloud_cert_renewer-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 ee4ce9aed7f5ac4a1a3a8128ac5194e6c904ae1d8622bf93b84d680f6b7593de
MD5 0b778ae1cb5c9df0036606ef7d4614fe
BLAKE2b-256 b8ab48bb81411e7c3fa78633e8c5fdd5d2ed12509a1230254c236129f7ce5d92

See more details on using hashes here.

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page