Skip to content

Commit

Permalink
rm description
Browse files Browse the repository at this point in the history
  • Loading branch information
breimers committed Apr 28, 2020
1 parent 2020f97 commit 185bb8c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
9 changes: 0 additions & 9 deletions kubernetes_manager/tests/factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ class Meta:
model = models_path + "TargetCluster"

title = factory.fuzzy.FuzzyText(length=8, suffix="-cluster")
description = fake.sentence()
api_endpoint = "https://127.0.0.1:16443"
telemetry_endpoint = "https://127.0.0.1:16443"
telemetry_source = "p"
Expand All @@ -29,7 +28,6 @@ class Meta:
model = models_path + "KubernetesNamespace"

title = factory.fuzzy.FuzzyText(length=8, suffix="-ns")
description = fake.paragraph(nb_sentences=3, variable_nb_sentences=True)
cluster = factory.SubFactory(TargetClusterFactory)
config = {"data_is_fake": "true"}
deployed = None
Expand All @@ -46,7 +44,6 @@ class Meta:
model = models_path + "KubernetesConfigMap"

title = factory.fuzzy.FuzzyText(length=8, suffix="-cm")
description = fake.sentence()
cluster = factory.SubFactory(TargetClusterFactory)
config = {"data_is_fake": "true"}
deployed = None
Expand All @@ -61,7 +58,6 @@ class Meta:
model = models_path + "KubernetesVolume"

title = factory.fuzzy.FuzzyText(length=8, suffix="-vol")
description = fake.sentence()
cluster = factory.SubFactory(TargetClusterFactory)
config = {"data_is_fake": "true"}
deployed = None
Expand All @@ -73,7 +69,6 @@ class Meta:
model = models_path + "KubernetesVolumeMount"

title = factory.fuzzy.FuzzyText(length=8, suffix="-mount")
description = fake.sentence()
cluster = factory.SubFactory(TargetClusterFactory)
config = {"data_is_fake": "true"}
deployed = None
Expand All @@ -87,7 +82,6 @@ class Meta:
model = models_path + "KubernetesContainer"

title = factory.fuzzy.FuzzyText(length=8, suffix="-container")
description = fake.sentence()
cluster = factory.SubFactory(TargetClusterFactory)
config = {"data_is_fake": "true"}
deployed = None
Expand All @@ -105,7 +99,6 @@ class Meta:
model = models_path + "KubernetesPodTemplate"

title = factory.fuzzy.FuzzyText(length=8, suffix="-pod")
description = fake.paragraph(nb_sentences=3, variable_nb_sentences=True)
cluster = factory.SubFactory(TargetClusterFactory)
config = {"data_is_fake": "true"}
deployed = None
Expand Down Expand Up @@ -143,7 +136,6 @@ class Meta:
model = models_path + "KubernetesDeployment"

title = factory.fuzzy.FuzzyText(length=8, suffix="-dep")
description = fake.paragraph(nb_sentences=3, variable_nb_sentences=True)
cluster = factory.SubFactory(TargetClusterFactory)
config = {"data_is_fake": "true"}
deployed = None
Expand All @@ -165,7 +157,6 @@ class Meta:
model = models_path + "KubernetesJob"

title = factory.fuzzy.FuzzyText(length=8, suffix="-job")
description = fake.paragraph(nb_sentences=3, variable_nb_sentences=True)
cluster = factory.SubFactory(TargetClusterFactory)
config = {"data_is_fake": "true"}
deployed = None
Expand Down
1 change: 0 additions & 1 deletion kubernetes_manager/tests/test_cases.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ def namespace_create_api(self):
"/namespaces/",
{
"title": str(factory.fuzzy.FuzzyText()),
"description": str(factory.fuzzy.FuzzyText()),
"cluster": "http://127.0.0.1:8000/dkm/api/clusters/1/",
"labels": {"app": "test"},
"annotations": {"type": "project"},
Expand Down

0 comments on commit 185bb8c

Please sign in to comment.