-
Notifications
You must be signed in to change notification settings - Fork 5.7k
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
fix(manifests): use params CM and env var for redis server (#13214) #13396
Conversation
…13214) Signed-off-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com>
Codecov ReportPatch and project coverage have no change.
Additional details and impacted files@@ Coverage Diff @@
## master #13396 +/- ##
=======================================
Coverage 49.14% 49.14%
=======================================
Files 248 248
Lines 42891 42891
=======================================
Hits 21079 21079
Misses 19693 19693
Partials 2119 2119 ☔ View full report in Codecov by Sentry. |
Signed-off-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com>
env: | ||
- name: ARGOCD_REDIS_SERVICE | ||
value: "" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this does anything. We're using the upstream redis image, which has no reason to know anything about an Argo CD env var.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please check my comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Signed-off-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com>
/cherry-pick release-2.7 |
…13396) * fix(manifests): use params CM and env var for redis server (#13214) Signed-off-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com> * add release note Signed-off-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com> * rephrase Signed-off-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com> * rephrase Signed-off-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com> --------- Signed-off-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com>
…13214) (argoproj#13396) (argoproj#13417) * fix(manifests): use params CM and env var for redis server (argoproj#13214) * add release note * rephrase * rephrase --------- Signed-off-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com> Co-authored-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com> Signed-off-by: schakrad <58915923+schakrad@users.noreply.github.com>
…13214) (argoproj#13396) * fix(manifests): use params CM and env var for redis server (argoproj#13214) Signed-off-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com> * add release note Signed-off-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com> * rephrase Signed-off-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com> * rephrase Signed-off-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com> --------- Signed-off-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com>
🤖 Generated by Copilot at 9cb22d0
This pull request refactors the configuration of the Redis server address for Argo CD components by using a config map and an environment variable
ARGOCD_REDIS
. This simplifies the installation and deployment of Argo CD in both standard and high availability modes. It also removes some redundant and hard-coded values from the manifests.Fixes #13214