Merge pull request #2122 from Ananya2001-an/move-yaml-files

chore: move yaml files to correct folder
This commit is contained in:
Kubernetes Prow Robot 2023-09-11 09:34:12 -07:00 committed by GitHub
commit 397d06b832
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ def main():
# default location.
config.load_kube_config()
with open(path.join(path.dirname(__file__), "nginx-deployment.yaml")) as f:
with open(path.join(path.dirname(__file__), "yaml_dir/nginx-deployment.yaml")) as f:
dep = yaml.safe_load(f)
k8s_apps_v1 = client.AppsV1Api()
resp = k8s_apps_v1.create_namespaced_deployment(