diff --git a/shell/plugins/clean-html-directive.js b/shell/plugins/clean-html-directive.js
deleted file mode 100644
index 6f5fef6747..0000000000
--- a/shell/plugins/clean-html-directive.js
+++ /dev/null
@@ -1,10 +0,0 @@
-import { createApp } from 'vue';
-import cleanHtmlDirective from '@shell/directives/clean-html';
-const vueApp = createApp({});
-
-export default cleanHtmlDirective;
-
-/* eslint-disable-next-line no-console */
-console.warn(`Importing cleanHtmlDirective from plugins has been deprecated, use shell/directives/clean-html.js instead.
-Make sure to invoke vueApp.directive('clean-html', cleanHtmlDirective) to maintain compatibility.`);
-vueApp.directive('clean-html', cleanHtmlDirective);
diff --git a/shell/plugins/clean-tooltip-directive.js b/shell/plugins/clean-tooltip-directive.js
deleted file mode 100644
index e91f3fa1a1..0000000000
--- a/shell/plugins/clean-tooltip-directive.js
+++ /dev/null
@@ -1,9 +0,0 @@
-import { createApp } from 'vue';
-import cleanTooltipDirective from '@shell/directives/clean-tooltip';
-const vueApp = createApp({});
-
-export default cleanTooltipDirective;
-/* eslint-disable-next-line no-console */
-console.warn(`Importing cleanTooltipDirective from plugins has been deprecated, use shell/directives/clean-tooltip.js instead.
-Make sure to invoke it using vueApp.directive('clean-tooltip', cleanTooltipDirective ) to maintain compatibility.`);
-vueApp.directive('clean-tooltip', cleanTooltipDirective);
diff --git a/shell/plugins/int-number.js b/shell/plugins/int-number.js
deleted file mode 100644
index 4a9ada1362..0000000000
--- a/shell/plugins/int-number.js
+++ /dev/null
@@ -1,9 +0,0 @@
-import { createApp } from 'vue';
-import intNumberDirective from '@shell/directives/int-number';
-const vueApp = createApp({});
-
-export default intNumberDirective;
-/* eslint-disable-next-line no-console */
-console.warn(`Importing intNumberDirective from plugins has been deprecated, use shell/directives/int-number.js instead.
-Make sure to invoke it using vueApp.directive('intNumber', intNumberDirective) to maintain compatibility.`);
-vueApp.directive('intNumber', intNumberDirective);
diff --git a/shell/plugins/positive-int-number.js b/shell/plugins/positive-int-number.js
deleted file mode 100644
index d59cca8663..0000000000
--- a/shell/plugins/positive-int-number.js
+++ /dev/null
@@ -1,9 +0,0 @@
-import { createApp } from 'vue';
-import positiveIntNumberDirective from '@shell/directives/positive-int-number';
-const vueApp = createApp({});
-
-export default positiveIntNumberDirective;
-/* eslint-disable-next-line no-console */
-console.warn(`Importing positiveIntNumberDirective from plugins has been deprecated, use shell/directives/positive-int-number.js instead.
-Make sure to invoke it using vueApp.directive('positiveIntNumber', positiveIntNumberDirective) to maintain compatibility.`);
-vueApp.directive('positiveIntNumber', positiveIntNumberDirective);
diff --git a/shell/plugins/trim-whitespace.js b/shell/plugins/trim-whitespace.js
deleted file mode 100644
index 4d6de79422..0000000000
--- a/shell/plugins/trim-whitespace.js
+++ /dev/null
@@ -1,10 +0,0 @@
-import { createApp } from 'vue';
-import trimWhitespaceDirective from '@shell/directives/trim-whitespace';
-const vueApp = createApp({});
-
-export default trimWhitespaceDirective;
-/* eslint-disable-next-line no-console */
-console.warn(`Importing trimWhitespaceDirective from plugins has been deprecated, use shell/directives/trim-whitespace.js instead.
-Make sure to invoke it using vueApp.directive('trim-whitespace', trimWhitespaceDirective ) to maintain compatibility.`);
-
-vueApp.directive('trim-whitespace', trimWhitespaceDirective );