From 6b1e908b7082e40e6f4bb4fb57546fa7ada47a60 Mon Sep 17 00:00:00 2001 From: ckji Date: Fri, 19 Dec 2025 17:57:22 +0800 Subject: [PATCH] remove warn false The warn parameter was deprecated in Ansible 2.11 and completely removed in Ansible 2.14. --- plugins/pytorch/workspace/install.yaml | 1 - plugins/pytorch/workspace/uninstall.yaml | 1 - plugins/tensorflow/workspace/install.yaml | 1 - plugins/tensorflow/workspace/uninstall.yaml | 1 - 4 files changed, 4 deletions(-) diff --git a/plugins/pytorch/workspace/install.yaml b/plugins/pytorch/workspace/install.yaml index 1b6f390..a00e666 100644 --- a/plugins/pytorch/workspace/install.yaml +++ b/plugins/pytorch/workspace/install.yaml @@ -16,4 +16,3 @@ - name: Apply the Kubernetes deployment using kubectl command: cmd: kubectl apply -f "/tmp/{{ kubectl_apply }}" - warn: false \ No newline at end of file diff --git a/plugins/pytorch/workspace/uninstall.yaml b/plugins/pytorch/workspace/uninstall.yaml index 269d7fb..746b439 100644 --- a/plugins/pytorch/workspace/uninstall.yaml +++ b/plugins/pytorch/workspace/uninstall.yaml @@ -5,4 +5,3 @@ - name: uninstall the Pytorch using kubectl command: cmd: kubectl delete -f "/tmp/{{ kubectl_apply }}" - warn: false \ No newline at end of file diff --git a/plugins/tensorflow/workspace/install.yaml b/plugins/tensorflow/workspace/install.yaml index 52896ad..3308619 100644 --- a/plugins/tensorflow/workspace/install.yaml +++ b/plugins/tensorflow/workspace/install.yaml @@ -16,4 +16,3 @@ - name: Apply the Kubernetes deployment using kubectl command: cmd: kubectl apply -f "/tmp/{{ kubectl_apply }}" - warn: false diff --git a/plugins/tensorflow/workspace/uninstall.yaml b/plugins/tensorflow/workspace/uninstall.yaml index 7f7d070..ea39d78 100644 --- a/plugins/tensorflow/workspace/uninstall.yaml +++ b/plugins/tensorflow/workspace/uninstall.yaml @@ -5,4 +5,3 @@ - name: uninstall the TensorFlow using kubectl command: cmd: kubectl delete -f "/tmp/{{ kubectl_apply }}" - warn: false -- Gitee