- Create Helm chart structure with Chart.yaml and values.yaml
- Add deployment template with container configuration and environment variables
- Implement service template for gRPC port exposure
- Add service account template with security configuration
- Include horizontal pod autoscaler template for scaling capabilities
- Add helper templates for naming and label management
- Configure SMTP settings as configurable parameters in values.yaml
- Set up resource limits and requests for container performance
- Implement liveness and readiness probes for health checks
- Add support for existing secrets and custom configurations
- Create multi-stage Dockerfile with builder and runtime stages
- Add .dockerignore to exclude unnecessary files and directories
- Configure builder stage with Rust toolchain and dependencies
- Set up runtime stage with minimal Debian base image
- Copy compiled binary from builder to runtime stage
- Expose port 50051 for gRPC service
- Add proper dependency caching for faster builds
- Include SSL certificates and required libraries in runtime
- Add .gitignore and .env.example files for project setup
- Create build script for proto compilation with tonic-prost
- Generate Cargo.lock with all project dependencies
- Configure project structure and ignore patterns for development environment