github.com/Racer159/jackal@v0.32.7-0.20240401174413-0bd2339e4f2e/examples/git-data/jackal.yaml (about)

     1  kind: JackalPackageConfig
     2  metadata:
     3    name: git-data
     4    version: 0.0.1
     5    description: Demo Jackal loading resources into a gitops service
     6  
     7  components:
     8    - name: full-repo
     9      repos:
    10        # The following performs a full Git Repo Mirror with `go-git` (internal to Jackal)
    11        - https://github.com/Racer159/jackal-public-test.git
    12        # The following performs a full Git Repo Mirror forcing a fallback to host `git`
    13        - https://dev.azure.com/Racer159/jackal-public-test/_git/jackal-public-test
    14  
    15    - name: specific-tag
    16      repos:
    17        # The following performs a tag Git Repo Mirror with `go-git` (internal to Jackal)
    18        - https://github.com/Racer159/jackal-public-test.git@v0.0.1
    19        # The following performs a refspec tag Git Repo Mirror with `go-git`
    20        - https://github.com/Racer159/jackal-public-test.git@refs/tags/v0.0.1
    21        # The following performs a tag Git Repo Mirror forcing a fallback to host `git`
    22        - https://dev.azure.com/Racer159/jackal-public-test/_git/jackal-public-test@v0.0.1
    23  
    24    - name: specific-branch
    25      repos:
    26        # The following performs a branch Git Repo Mirror with `go-git` (internal to Jackal)
    27        - https://github.com/Racer159/jackal-public-test.git@refs/heads/dragons
    28        # The following performs a branch Git Repo Mirror forcing a fallback to host `git`
    29        - https://dev.azure.com/Racer159/jackal-public-test/_git/jackal-public-test@refs/heads/dragons
    30  
    31    - name: specific-hash
    32      repos:
    33        # The following performs a SHA Git Repo Mirror with `go-git` (internal to Jackal)
    34        - https://github.com/Racer159/jackal-public-test.git@01a23218923f24194133b5eb11268cf8d73ff1bb
    35        # The following performs a SHA Git Repo Mirror forcing a fallback to host `git`
    36        - https://dev.azure.com/Racer159/jackal-public-test/_git/jackal-public-test@01a23218923f24194133b5eb11268cf8d73ff1bb
    37