Skip to content
This repository was archived by the owner on Nov 24, 2025. It is now read-only.

Release preparation - #8

Merged
wahyd4 merged 7 commits into
mainfrom
release-preparation
Aug 6, 2025
Merged

Release preparation#8
wahyd4 merged 7 commits into
mainfrom
release-preparation

Conversation

@wahyd4

@wahyd4 wahyd4 commented Aug 6, 2025

Copy link
Copy Markdown
Owner

Description

Brief description of what this PR does.

Type of Change

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • Documentation update
  • Performance improvement
  • Code refactoring

@wahyd4
wahyd4 requested a review from Copilot August 6, 2025 11:32

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR prepares the project for release by transitioning from custom Kubernetes deployment scripts to a professional Helm chart distribution. It introduces a complete Helm chart with comprehensive configuration options and establishes GitHub Pages hosting for chart distribution.

  • Replaces manual deployment scripts with a Helm chart for Kubernetes-native package management
  • Adds GitHub Actions workflow for automated chart testing, packaging, and hosting
  • Introduces comprehensive configuration options and example values for different environments

Reviewed Changes

Copilot reviewed 28 out of 30 changed files in this pull request and generated 4 comments.

Show a summary per file
File Description
scripts/validate-chart.sh New script for Helm chart validation with linting, templating, and manifest testing
scripts/undeploy.sh Removed legacy deployment script in favor of Helm-based deployment
scripts/test.sh Removed basic build test script
scripts/github-setup.sh Removed GitHub repository setup script
scripts/dev.sh Removed development startup script
scripts/deploy.sh Removed manual Kubernetes deployment script
scripts/build.sh Removed Docker build script
helm/passkey-auth/values.yaml Complete Helm chart configuration with production-ready defaults
helm/passkey-auth/templates/* Kubernetes resource templates for Deployment, Service, Ingress, ConfigMap, Secret, etc.
helm/passkey-auth/Chart.yaml Helm chart metadata and versioning information
helm/passkey-auth/README.md Comprehensive documentation for chart installation and configuration
.github/workflows/helm-release.yml GitHub Actions workflow for automated chart testing and release
.github/cr.yaml Chart releaser configuration for GitHub Pages hosting
docker-compose.yml Updated environment variables and configuration path
README.md Streamlined documentation focusing on Helm installation

Comment thread scripts/validate-chart.sh
)

for value in "${REQUIRED_VALUES[@]}"; do
if helm template test-release $CHART_DIR --show-only templates/configmap.yaml | grep -q "REQUIRED"; then

Copilot AI Aug 6, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The grep check for "REQUIRED" will not work correctly. The logic is inverted - when grep finds "REQUIRED", it returns 0 (success), but the script treats this as an error condition. This should use ! grep -q "REQUIRED" or check the exit code differently.

Copilot uses AI. Check for mistakes.
Comment thread helm/passkey-auth/values.yaml Outdated
Comment thread .github/workflows/helm-release.yml Outdated
Comment thread helm/passkey-auth/templates/ingress.yaml Outdated
wahyd4 and others added 3 commits August 6, 2025 21:34
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
@wahyd4
wahyd4 merged commit 9a1dc3a into main Aug 6, 2025
3 checks passed
@wahyd4
wahyd4 deleted the release-preparation branch August 6, 2025 11:36
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants