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

helm: Add subcomponent labels for celery beat and worker at deployment #9865

Merged
merged 6 commits into from
Apr 30, 2024

Commits on Apr 2, 2024

  1. helm: Add subcomponent labels for celery beat and worker at deployment

    ```
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      labels:
        defectdojo.org/component: celery
        defectdojo.org/subcomponent: worker
    spec:
      selector:
        matchLabels:
          defectdojo.org/component: celery
          defectdojo.org/subcomponent: worker
      template:
        metadata:
          labels:
            defectdojo.org/component: celery
            defectdojo.org/subcomponent: worker
    ```
    
    1, The first label is for deployment itself, it gives label for that particular deployment.
    2, The second label is selector: matchLabels which tells the resources(service etc) to match the pod according to label.
    3. The third label is podTemplate labels, the template is actually podTemplate. It describe the pod that it is launched.
    Alexander Chebotov committed Apr 2, 2024
    Configuration menu
    Copy the full SHA
    91f3efc View commit details
    Browse the repository at this point in the history
  2. Update helm lock file

    Signed-off-by: DefectDojo <defectdojo-project@owasp.org>
    DefectDojo committed Apr 2, 2024
    Configuration menu
    Copy the full SHA
    48b54ca View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2024

  1. Configuration menu
    Copy the full SHA
    ad1ae9e View commit details
    Browse the repository at this point in the history
  2. bump chart version

    Alexander Chebotov committed Apr 3, 2024
    Configuration menu
    Copy the full SHA
    1ecb313 View commit details
    Browse the repository at this point in the history
  3. Update helm lock file

    Signed-off-by: DefectDojo <defectdojo-project@owasp.org>
    DefectDojo committed Apr 3, 2024
    Configuration menu
    Copy the full SHA
    6e93ff2 View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2024

  1. revert changes

    Alexander Chebotov committed Apr 8, 2024
    Configuration menu
    Copy the full SHA
    bb22a94 View commit details
    Browse the repository at this point in the history