We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Instead of adding annotations one by one allow adding an object with all the annotations by introducing a new method "addAnnotations" to ingress.
Improvement for code quality.
The resulting code can look like this, which is a lot nicer than 5 calls of addAnnotation:
addAnnotation
const ingressAnnotations = { 'kubernetes.io/ingress.class': 'alb', 'alb.ingress.kubernetes.io/target-type': 'ip', 'alb.ingress.kubernetes.io/scheme': 'internet-facing', 'alb.ingress.kubernetes.io/healthcheck-path': '/ping', 'alb.ingress.kubernetes.io/listen-ports': '[{"HTTP": 80}, {"HTTPS": 443}]' }; ingress.metadata.addAnnotations(ingressAnnotations);
This is a 🚀 Feature Request
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description of the feature or enhancement:
Instead of adding annotations one by one allow adding an object with all the annotations by introducing a new method "addAnnotations" to ingress.
Use Case:
Improvement for code quality.
Proposed Solution:
The resulting code can look like this, which is a lot nicer than 5 calls of
addAnnotation
:This is a 🚀 Feature Request
The text was updated successfully, but these errors were encountered: