You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
server_addr attribure is required :( but if I set it with kubectl api it does't work.
Error: Missing required argument
│
│ with provider["registry.terraform.io/oboukili/argocd"],
│ on providers.tf line 10, in provider "argocd":
│ 10: provider "argocd" {
│
│ "username": one of `auth_token,password,use_local_config,username` must be specified
The text was updated successfully, but these errors were encountered:
AFAIK, login --core cannot be used by 3rd-parties for now, since it simulates a local ArgoCD as a backend (and is not available in argo-cd package)
I see that you have an argocd-server which makes the use of --core not mandatory for the terraform part.
You can try with the port-forward flag so you can use the ClusterIP :
provider"argocd" {
server_addr="port-forward"username=""# <--- needed since not login core anymorepassword=""# <--- needed since not login core anymoreport_forward=trueport_forward_with_namespace="xxx"# <--- if not default namespaceinsecure=truekubernetes {
config_path="~/.kube/config"config_context="kind-monitor"
}
grpc_web=true# <-- might be needed depending on your config
Hi,
I have not exposed argo server, it is as ClusterIP. I'd like to connect to it using kubernetes api like
argocd --core
doesHow to configure this provider?
server_addr
attribure is required :( but if I set it with kubectl api it does't work.The text was updated successfully, but these errors were encountered: