skip to Main Content

How to set static private IP address for Load Balancer. Kubernetes/AWS – Amazon Web Sevices

I am trying to set a static private IP address for a Kubernetes loadbalancer service during its creation: apiVersion: v1 kind: Service metadata: name: web-server-service-lb namespace: web annotations: service.beta.kubernetes.io/aws-load-balancer-type: "nlb-ip" service.beta.kubernetes.io/aws-load-balancer-internal: "true" service.beta.kubernetes.io/aws-load-balancer-private-ipv4-addresses: "10.9.4.55, 10.9.1.55" service.beta.kubernetes.io/aws-load-balancer-subnets: "subnet-02500d74cef5fef04, subnet-0e32bdf9ae9de8145" spec: type:…

VIEW QUESTION

XCom Value Not showing in Airflow MWAA – Amazon Web Sevices

I'm running following script in MWAA and my local env. from airflow import DAG, XComArg from airflow.providers.amazon.aws.operators.redshift_sql import RedshiftSQLOperator from airflow.models.connection import Connection from airflow.operators.dummy_operator import DummyOperator from airflow.utils.task_group import TaskGroup # from airflow.providers.slack.hooks.slack_webhook import SlackWebhookHook from airflow.decorators import dag,…

VIEW QUESTION
Back To Top
Search