I have inherited some Javascript code that creates a client and then does a namespace query on an EKS cluster:
//Get API client for k8s
let k8sApplicationAPI = this.kubeConfig.makeApiClient(k8s.AppsV1Api);
//Get deployments
k8sApplicationAPI.listNamespacedDeployment(namespaceName)
How do I pass the AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY to the client?
Or, more accurately, how do I pass these needed environment variables to the client?