From b5431ed7c0f4659269143daedb1651ef9a303a89 Mon Sep 17 00:00:00 2001 From: Konrad Bańka Date: Wed, 4 Sep 2019 17:22:42 +0200 Subject: Remove ovn4nfvk8s network plugin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As ovn4nfv networks are now handled on k8s side by created CRD, this plugin is no longer necessary. Removed all references to ovn Issue-ID: MULTICLOUD-733 Signed-off-by: Konrad Bańka Change-Id: I7ad6c6d9b3b4fd8f249796f437e69c7df4e701cc --- src/k8splugin/internal/config/config.go | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/k8splugin/internal') diff --git a/src/k8splugin/internal/config/config.go b/src/k8splugin/internal/config/config.go index 23ec401e..0e45308c 100644 --- a/src/k8splugin/internal/config/config.go +++ b/src/k8splugin/internal/config/config.go @@ -37,7 +37,6 @@ type Configuration struct { EtcdCert string `json:"etcd-cert"` EtcdKey string `json:"etcd-key"` EtcdCAFile string `json:"etcd-ca-file"` - OVNCentralAddress string `json:"ovn-central-address"` ServicePort string `json:"service-port"` KubernetesLabelName string `json:"kubernetes-label-name"` } @@ -86,7 +85,6 @@ func defaultConfiguration() *Configuration { EtcdCert: "etcd.cert", EtcdKey: "etcd.key", EtcdCAFile: "etcd-ca.cert", - OVNCentralAddress: "127.0.0.1:6641", ServicePort: "9015", KubernetesLabelName: "k8splugin.io/rb-instance-id", } -- cgit 1.2.3-korg