Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Plugin Parameters #286

Open
addisonj opened this issue May 25, 2023 · 1 comment
Open

Support Plugin Parameters #286

addisonj opened this issue May 25, 2023 · 1 comment
Labels
enhancement New feature or request good first issue Good for newcomers help wanted Community help wanted!

Comments

@addisonj
Copy link

Description

Since ArgoCD 2.6, the Application CRD supports "paremters" within the plugin block. Currently, this operator doesn't support passing that to the CRD.

An example of parameters:

source:
  repoURL: '[email protected]:myrepo/repo'
  path: folder
  targetRevision: main
  plugin: # support we have a 
    parameters:
      - name: arrayparam
        array:
          - foo
          - bar
      - name: stringparam
        string: beepboop

Potential Terraform Configuration

In terraform, that could be translated literally

spec {
  plugin {
    parameter {
      name: "arrayparam"
      array: [ "foo", "bar" ]
    }
    parameter {
      name: "stringparam"
      string: "beepboop"
    }
  }
}

References

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment
@addisonj addisonj added the enhancement New feature or request label May 25, 2023
@onematchfox onematchfox added the help wanted Community help wanted! label May 25, 2023
@onematchfox onematchfox added the good first issue Good for newcomers label Jun 27, 2023
@aleeekhaan
Copy link

Hi, picking up this issue

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request good first issue Good for newcomers help wanted Community help wanted!
Projects
None yet
Development

No branches or pull requests

3 participants