Skip to content

Commit ee20431

Browse files
committed
need to pass a domain name
1 parent b12c657 commit ee20431

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

rust/olm-deployer/src/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ use clap::Parser;
2323
use stackable_operator::{
2424
cli::Command,
2525
client,
26+
commons::networking::DomainName,
2627
k8s_openapi::api::{apps::v1::Deployment, rbac::v1::ClusterRole},
2728
kube::{
2829
self,
@@ -101,7 +102,7 @@ async fn main() -> Result<()> {
101102
);
102103

103104
let dummy_cluster_info = KubernetesClusterInfoOptions {
104-
kubernetes_cluster_domain: None,
105+
kubernetes_cluster_domain: Some(DomainName::try_from("cluster.local")?),
105106
kubernetes_node_name: "".to_string(),
106107
};
107108

0 commit comments

Comments
 (0)