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

chore(argo-cd): Remove deprecated features and redesign Ingress #2407

Merged
merged 23 commits into from
Feb 7, 2024

Conversation

pdrastil
Copy link
Member

@pdrastil pdrastil commented Jan 1, 2024

It's more than 1 year since these were removed / deprecated and it's probably safe to drop backward compatibility.

Checklist:

  • I have bumped the chart version according to versioning
  • I have updated the documentation according to documentation
  • I have updated the chart changelog with all the changes that come with this pull request according to changelog.
  • Any new values are backwards compatible and/or have sensible default.
  • I have signed off all my commits as required by DCO.
  • My build is green (troubleshooting builds).

@pdrastil pdrastil force-pushed the feature/depracate branch 3 times, most recently from 875045a to 393f0dd Compare January 1, 2024 16:06
@@ -13,8 +13,6 @@ metadata:
{{- include "argo-cd.labels" (dict "context" . "component" .Values.controller.name "name" .Values.controller.name) | nindent 4 }}
spec:
replicas: {{ .Values.controller.replicas }}
# TODO: Remove for breaking release as history limit cannot be patched
revisionHistoryLimit: 5
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If we drop this (and I'd sponsor to do so), we need a major bump and also instructions on howto upgrade.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's mentioned in README that you need to use replace strategy (helm upgrade --force or helm template | kubectl replace -f -)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Helm upgrade force does not work anymore with helmv3+:

But ok, we can release that👍

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mkilchhofer I'm going to port also #2415 into this as change in Ingress interface will be breaking

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changed to configuration in values.yaml to allow upgrade without replacing the resource based on discussion with @mkilchhofer

@pdrastil pdrastil force-pushed the feature/depracate branch 3 times, most recently from 3c11a73 to 272ec08 Compare January 1, 2024 16:17
@pdrastil
Copy link
Member Author

pdrastil commented Jan 1, 2024

@mkilchhofer If we want to do major bump - do we want to go through arguments and name things consistently across components. env, envFrom vs extraArgs. We originally used the extra word because args were dictionary and not a list.

yu-croco
yu-croco previously approved these changes Jan 1, 2024
Copy link
Collaborator

@yu-croco yu-croco left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚀

@yu-croco yu-croco dismissed their stale review January 1, 2024 16:23

It's still under discussion

@yu-croco yu-croco self-requested a review January 1, 2024 16:24
@pdrastil
Copy link
Member Author

pdrastil commented Jan 1, 2024

Also another thing that might go into major release is the changes I've mentioned about multiple ingress controller implementations on Slack. Could be good opportunity to clean this up.

Signed-off-by: Petr Drastil <petr.drastil@gmail.com>
Signed-off-by: Petr Drastil <petr.drastil@gmail.com>
Signed-off-by: Petr Drastil <petr.drastil@gmail.com>
Signed-off-by: Petr Drastil <petr.drastil@gmail.com>
@pdrastil pdrastil requested a review from mkilchhofer January 30, 2024 10:21
@pdrastil
Copy link
Member Author

@mkilchhofer Are you OK with current state? Merge is blocked since your last review.

* main:
  docs(argo-workflows): update documentation links to readthedocs (argoproj#2472)
  chore(argo-cd): Update dependency argoproj/argo-cd to v2.9.6 (argoproj#2473)
  fix(argocd-apps): move ignoreApplicationDifferences block up a level (argoproj#2471)
  fix(argo-cd): bump dex image version to fix cves (argoproj#2468)
  feat(argo-cd): bump redis deps to fix cves (argoproj#2466)
Signed-off-by: Petr Drastil <petr.drastil@gmail.com>
Signed-off-by: Petr Drastil <petr.drastil@gmail.com>
* origin/main:
  chore(argo-cd): refresh from upstream (argoproj#2474)
Signed-off-by: Petr Drastil <petr.drastil@gmail.com>
* main:
  feat(argo-cd): Add Probes for redis (argoproj#2400)
* main:
  feat(argo-cd): Upgrade Argo CD to 2.10.0 (argoproj#2476)
@mbevc1 mbevc1 merged commit b8212e0 into argoproj:main Feb 7, 2024
@pdrastil pdrastil deleted the feature/depracate branch February 8, 2024 09:45
@jetersen
Copy link

jetersen commented Feb 13, 2024

Release note did not describe to what degree was changed nor provide an upgrade guide 😓
I read the release notes thinking you only changed grpc ingress but even the normal ingress broke because of the use of hostname which seems unconventional. Very common to use hosts
Now left to figure out what changes I had not migrated over the years.

@pdrastil
Copy link
Member Author

@jetersen Hi thanks for feedback. I'll add additional info to release notes. I agree that hostname is uncommon, however it makes sense as all components share single domain and some configuration options (SSO, notifications) allow only single URL for callbacks. There is upcoming PR #2499 that simplifies configuration of all services with this cross-cutting concern from single place and user config will look more like this sample, instead of copy & pasting same value into multiple places.

global:
  domain: argocd.example.com

server:
  certificate:
    enabled: true
  ingress:
    enabled: true
    tls: true

@pdrastil
Copy link
Member Author

@jetersen Have you seen this or you checked release notes that are part of the chart? https://github.com/argoproj/argo-helm/tree/main/charts/argo-cd#600

@jetersen
Copy link

jetersen commented Feb 13, 2024

Usually Renovate will pull the changelogs from ArtifactHub but because your pushing GitHub Releases as well Renovate will basically grab that first and therefore I did not see the changelog. Yes it is on me for just trusting GitHub Releases since I missed that you maintain the changelog in README.md
I wonder why the GitHub Releases do not contain the content from the changelog.md from the current release.
Shouldn't just be a part of the github workflow for releasing? 🤔

legal90 added a commit to legal90/argo-helm that referenced this pull request Mar 21, 2025
…ifications controller

These are deprecated in favor of corresponding settings in `config.params`, to match with
the official docs: https://argo-cd.readthedocs.io/en/stable/operator-manual/argocd-cmd-params-cm-yaml/

The same changes were previously done for all other components much earlier in
argoproj#1267
and then these params were removed in argoproj#2407
legal90 added a commit to legal90/argo-helm that referenced this pull request Mar 21, 2025
…ifications controller

These are deprecated in favor of corresponding settings in `config.params`, to match with
the official docs: https://argo-cd.readthedocs.io/en/stable/operator-manual/argocd-cmd-params-cm-yaml/

The same changes were previously done for all other components much earlier in
argoproj#1267
and then these params were removed in argoproj#2407

Signed-off-by: Mikhail Zholobov <legal90@gmail.com>
legal90 added a commit to legal90/argo-helm that referenced this pull request Mar 24, 2025
…ifications controller

These are deprecated in favor of corresponding settings in `config.params`, to match with
the official docs: https://argo-cd.readthedocs.io/en/stable/operator-manual/argocd-cmd-params-cm-yaml/

The same changes were previously done for all other components much earlier in
argoproj#1267
and then these params were removed in argoproj#2407

Signed-off-by: Mikhail Zholobov <legal90@gmail.com>
legal90 added a commit to legal90/argo-helm that referenced this pull request Mar 27, 2025
…ifications controller

These are deprecated in favor of corresponding settings in `config.params`, to match with
the official docs: https://argo-cd.readthedocs.io/en/stable/operator-manual/argocd-cmd-params-cm-yaml/

The same changes were previously done for all other components much earlier in
argoproj#1267
and then these params were removed in argoproj#2407

Signed-off-by: Mikhail Zholobov <legal90@gmail.com>
legal90 added a commit to legal90/argo-helm that referenced this pull request Mar 31, 2025
…ifications controller

These are deprecated in favor of corresponding settings in `config.params`, to match with
the official docs: https://argo-cd.readthedocs.io/en/stable/operator-manual/argocd-cmd-params-cm-yaml/

The same changes were previously done for all other components much earlier in
argoproj#1267
and then these params were removed in argoproj#2407

Signed-off-by: Mikhail Zholobov <legal90@gmail.com>
mbevc1 pushed a commit that referenced this pull request Mar 31, 2025
…ifications controller (#3209)

* fix(argo-cd): Deprecate logLevel and logFormat values for dex and notifications controller

These are deprecated in favor of corresponding settings in `config.params`, to match with
the official docs: https://argo-cd.readthedocs.io/en/stable/operator-manual/argocd-cmd-params-cm-yaml/

The same changes were previously done for all other components much earlier in
#1267
and then these params were removed in #2407

Signed-off-by: Mikhail Zholobov <legal90@gmail.com>

* chore(argo-cd): Bump argo-cd chart version

Signed-off-by: Mikhail Zholobov <legal90@gmail.com>

---------

Signed-off-by: Mikhail Zholobov <legal90@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants