Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 857 Bytes

File metadata and controls

28 lines (24 loc) · 857 Bytes

Contributing to Argo Stack with Authorization Adapter

Thank you for your interest in contributing! This document provides guidelines for contributing to this project.

🚀 Getting Started

  1. Fork the repository on GitHub
  2. Clone your fork locally:
    git clone https://github.com/your-username/argo-helm.git
    cd argo-helm
  3. Create a feature branch from main:
    git checkout -b feature/your-feature-name
  4. Make your changes in the relevant directories:
  5. Run tests and validations (see Testing section in quickstart.md):
    • Helm linting
    • Chart testing with kind
    • Unit tests for authz-adapter
    • Kubeconform schema validation
  6. Commit your changes with clear messages:
  7. Push your branch to your fork:
    git push origin feature/your-feature-name