Skip to content

Commit 9a41bbb

Browse files
author
RahulMR42
committed
cleanup steps
1 parent b20cd20 commit 9a41bbb

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

AIO.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,3 @@ All in One reference for samples - In Alphabetical (A to Z) order.
2626
- Invoke deployment pipeline on a container image upload - https://github.com/oracle-devrel/oci-devops-examples/blob/main/oci-deployment-examples/oci-devops-deploy-on-imageupload
2727
- OCI Policy management using terraform - https://github.com/oracle-devrel/oci-devops-examples/blob/main/oci-config-examples/oci_devops_policy_dg_terraform
2828
- Scanning code for vulnerabilities for Maven packages - https://github.com/oracle-devrel/oci-devops-examples/tree/main/oci-build-examples/oci-devops-vulnerability-audit-management
29-
rahulmr_in@rahulmr_in-mac oci-devops-examples %

oci-pipeline-examples/oci-devops-graal-micronaut-deploy-to-instances/README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -426,6 +426,22 @@ steps:
426426
java -jar app.jar &
427427
```
428428

429+
430+
## Clean up the resources .
431+
432+
Clean all these resources via OCI Console .
433+
434+
- Delete the artifacts and then the artifact registry repo.
435+
- Request deletion of the Vault secret / Master key / Vault if necessary.
436+
- Delete Devops Deployment stage and then deployment pipeline.
437+
- Delete Devops build stages and then build pipeline.
438+
- Delete Devops artifacts and Environments.
439+
- Delete the logs/Log group if necessary.
440+
- Delete Devops project.
441+
- Delete the instance/s.
442+
- Delete the polices / dynamic groups.
443+
444+
429445
References
430446
==========
431447

oci-pipeline-examples/oci-devops-graal-micronaut-deploy-to-instances/src/main/java/com/example/HelloController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class HelloController {
1010
@Get
1111
@Produces(MediaType.TEXT_PLAIN)
1212
public String index() {
13-
return "With from OCI Devops!";
13+
return "With Love from OCI Devops - Powered by Graal Enterprise!";
1414
}
1515

1616
@Get ("/{name}")

oci-pipeline-examples/oci-devops-graal-micronaut-deploy-to-instances/src/test/java/com/example/HelloControllerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public void testHello() {
2323
String body = client.toBlocking().retrieve(request);
2424

2525
assertNotNull(body);
26-
assertEquals("With from OCI Devops!", body);
26+
assertEquals("With Love from OCI Devops - Powered by Graal Enterprise!", body);
2727
}
2828
@Test
2929
public void testHelloName() {

0 commit comments

Comments
 (0)