Skip to content
New issue

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

PLAT-3741: Remove pod_cidr #81

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions cdk/domino_cdk/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ def generate_install_config(
install: Install,
aws_region: str,
eks_cluster_name: str,
pod_cidr: str,
global_node_selectors: Dict[str, str],
buckets: Dict[str, Bucket],
monitoring_bucket: Optional[Bucket],
Expand All @@ -22,7 +21,6 @@ def generate_install_config(
agent_cfg: Dict[str, Any] = {
"name": name,
"hostname": install.hostname,
"pod_cidr": pod_cidr,
"global_node_selectors": global_node_selectors,
"storage_classes": {
"shared": {
Expand Down
1 change: 0 additions & 1 deletion cdk/domino_cdk/domino_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ def generate_outputs(self):
install=self.cfg.install,
aws_region=self.cfg.aws_region,
eks_cluster_name=self.eks_stack.cluster.cluster_name,
pod_cidr=self.vpc_stack.vpc.vpc_cidr_block,
global_node_selectors=self.cfg.eks.global_node_labels,
buckets=self.s3_stack.buckets,
monitoring_bucket=self.s3_stack.monitoring_bucket,
Expand Down
2 changes: 0 additions & 2 deletions cdk/tests/unit/test_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ def test_generate_intsall_config_istio(self):
),
"us-west-2",
"test-cluster",
"10.0.0.0/16",
{},
self.buckets,
None,
Expand Down Expand Up @@ -86,7 +85,6 @@ def test_generate_intsall_config(self):
),
"us-west-2",
"test-cluster",
"10.0.0.0/16",
{},
self.buckets,
None,
Expand Down