Results 8 comments of Nick Curry

Issue https://github.com/argoproj-labs/argocd-operator/issues/385 implies the solution is to manually add a list of namespaces ArgoCD is allowed to manage to the Subscription in an environment variable ARGOCD_CLUSTER_CONFIG_NAMESPACES. i.e. ```yaml apiVersion: operators.coreos.com/v1alpha1...

With the downstream Red Hat openshift-gitops opeartor, if you deploy the ArgoCD CRD into the openshift-gitops namespace, its cluster-scoped. If you deploy it anywhere else, its namespace-scoped. https://developers.redhat.com/articles/2021/08/03/managing-gitops-control-planes-secure-gitops-practices ``` OpenShift...

[xmlbuilder2](https://github.com/oozcitak/xmlbuilder2) looks like a decent candidate as well.

Also experiencing this. Would be nice to see this added as it has been one of the first things the users of our RocketChat server have noticed and led to...

Setting an environment variable in my CLion Cargo Run configuration to ``` LD_LIBRARY_PATH="/path/to/project/target/debug/deps:/home/user/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib:$LD_LIBRARY_PATH" ``` allowed me to properly use the CLion debugger.

For example ```toml # .streamlit/secrets.toml [connections.name_one] type = "gsheets" spreadsheet = "https://docs.google.com/spreadsheets/d/xxxxxxx/edit#gid=0" [connections.name_two] type = "gsheets" spreadsheet = "https://docs.google.com/spreadsheets/d/xxxxxxx/edit#gid=0" ``` ```python # streamlit_app.py import streamlit as st from streamlit_gsheets import...