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
{{ message }}
This repository has been archived by the owner on Sep 9, 2022. It is now read-only.
Hello,
I ran into an issue when running make install and it goes to set_aws_parameters to set OPERATOR_REGION, SQS_URL, IAM_ARN for sed. Instead of values, they are blank. Is this only on MacOS using default make binary? I have fixed it by avoiding variable definitions in particular action by directly setting:
sed -i .bak "s,OPERATOR_REGION,$(shell aws cloudformation describe-stacks --stack-name EKS-Secrets-Operator-Stack --query "Stacks[0].Outputs[?OutputKey=='Region'].OutputValue" --output text),g" config/manager/manager.yaml
and so on.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello,
I ran into an issue when running make install and it goes to set_aws_parameters to set OPERATOR_REGION, SQS_URL, IAM_ARN for sed. Instead of values, they are blank. Is this only on MacOS using default make binary? I have fixed it by avoiding variable definitions in particular action by directly setting:
sed -i .bak "s,OPERATOR_REGION,$(shell aws cloudformation describe-stacks --stack-name EKS-Secrets-Operator-Stack --query "Stacks[0].Outputs[?OutputKey=='Region'].OutputValue" --output text),g" config/manager/manager.yaml
and so on.
The text was updated successfully, but these errors were encountered: