Skip to content

Commit ba06b4d

Browse files
spadgettf0x11
authored andcommitted
Remove incorrect warning when deleting build config
Not all build history is necessarily deleted, so remove that message. Builds without owner references will no be garbage collected.
1 parent e83e9d7 commit ba06b4d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/views/modals/delete-resource.html

-4
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,6 @@ <h1 translate>Are you sure you want to delete the {{typeDisplayName || (kind | h
1717
This will delete the {{typeDisplayName || (kind | humanizeKind)}} and any running pods.
1818
</span>
1919

20-
<span ng-if="kind === 'ServiceInstance'" translate>
21-
{{displayName ? displayName : resourceName}} and its data will no longer be available to your applications.
22-
</span>
23-
2420
<span ng-if="isProject" translate>
2521
This will <strong>delete all resources</strong> associated with the project {{displayName ? displayName : resourceName}}.
2622
</span>

dist/scripts/templates.js

+4
Original file line numberDiff line numberDiff line change
@@ -12575,7 +12575,11 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
1257512575
"<span ng-if=\"kind === 'Deployment'\" translate>\n" +
1257612576
"This will delete the deployment, all rollout history, and any running pods.\n" +
1257712577
"</span>\n" +
12578+
<<<<<<< acc73debc76d37f62295f9b6f20682fd276a4aff
1257812579
"<span ng-if=\"kind === 'ReplicationController' || kind === 'ReplicaSet' || kind === 'StatefulSet'\" translate>\n" +
12580+
=======
12581+
"<span ng-if=\"kind === 'ReplicationController' || kind === 'ReplicaSet' || kind === 'StatefulSet'\">\n" +
12582+
>>>>>>> Remove incorrect warning when deleting build config
1257912583
"This will delete the {{typeDisplayName || (kind | humanizeKind)}} and any running pods.\n" +
1258012584
"</span>\n" +
1258112585
"<span ng-if=\"kind === 'ServiceInstance'\" translate>\n" +

0 commit comments

Comments
 (0)