fabric8 create namespace

Solutions on MaxInterview for fabric8 create namespace by the best coders in the world

showing results for - "fabric8 create namespace"
Abril
20 Feb 2017
1KubernetesClient client = new DefaultKubernetesClient()
2Namespace ns = new NamespaceBuilder().withNewMetadata().withName("my_namespace").endMetadata().build();
3client.namespaces().create(ns)