diff --git a/app-dev/devops-and-containers/devops/azure-devops-oke/README.md b/app-dev/devops-and-containers/devops/azure-devops-oke/README.md index 3c842d89d..abfc20ead 100644 --- a/app-dev/devops-and-containers/devops/azure-devops-oke/README.md +++ b/app-dev/devops-and-containers/devops/azure-devops-oke/README.md @@ -82,7 +82,7 @@ Once the OKE cluster is up and running with kubectl access setup th https://docs.oracle.com/en-us/iaas/Content/ContEng/Tasks/contengaddingserviceaccttoken.htm.

-Name the secret oke-kubeconfig-azure-token as in azure-token.yaml line 4. +Name the secret oke-kubeconfig-azure-token as in azure-token.yaml line 4. ## Setup Azure DevOps OCI connections for OKE and OCIR diff --git a/app-dev/devops-and-containers/devops/devops-nodejs-vm/.gitignore b/app-dev/devops-and-containers/devops/devops-nodejs-vm/.gitignore deleted file mode 100644 index 747075a9c..000000000 --- a/app-dev/devops-and-containers/devops/devops-nodejs-vm/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -source/node_modules/ -source/package-lock.json diff --git a/app-dev/devops-and-containers/devops/devops-nodejs-vm/README.md b/app-dev/devops-and-containers/devops/devops-nodejs-vm/README.md index efe7e0a18..11c88bc19 100644 --- a/app-dev/devops-and-containers/devops/devops-nodejs-vm/README.md +++ b/app-dev/devops-and-containers/devops/devops-nodejs-vm/README.md @@ -36,17 +36,32 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --> -### Author -mikarinneoracle - -### Guide - +# VM based CI/CD for a sample NodeJS application using OCI DevOps + +Reviewed: 29.10.2024 + +# When to use this asset? + +Anyone who wants to do CI/CD with OCI DevOps service for a NodeJS application running on a plain Oracle Linux VM. + +# How to use this asset? + Please see the setup guide on Medium. -### License +# Author +mikarinneoracle +# Useful Links (Optional) + +- [Oracle](https://www.oracle.com/devops/devops-service/) +- Oracle Cloud Infrastructure (OCI) DevOps is a continuous integration and continuous delivery (CI/CD) service for development teams building on OCI. +- [Oracle](https://www.oracle.com) + - Oracle Website + +# License + Copyright (c) 2024 Oracle and/or its affiliates. - + Licensed under the Universal Permissive License (UPL), Version 1.0. - -See [LICENSE](https://github.com/oracle-devrel/technology-engineering/blob/main/LICENSE) for more details. \ No newline at end of file + +See [LICENSE](https://github.com/oracle-devrel/technology-engineering/blob/main/LICENSE) for more details. diff --git a/app-dev/devops-and-containers/devops/devops-nodejs-vm/files/.gitignore b/app-dev/devops-and-containers/devops/devops-nodejs-vm/files/.gitignore new file mode 100644 index 000000000..9619bd191 --- /dev/null +++ b/app-dev/devops-and-containers/devops/devops-nodejs-vm/files/.gitignore @@ -0,0 +1,2 @@ +files/node_modules/ +files/package-lock.json diff --git a/app-dev/devops-and-containers/devops/devops-nodejs-vm/build_spec.yaml b/app-dev/devops-and-containers/devops/devops-nodejs-vm/files/build_spec.yaml similarity index 100% rename from app-dev/devops-and-containers/devops/devops-nodejs-vm/build_spec.yaml rename to app-dev/devops-and-containers/devops/devops-nodejs-vm/files/build_spec.yaml diff --git a/app-dev/devops-and-containers/devops/devops-nodejs-vm/deploy_spec.yaml b/app-dev/devops-and-containers/devops/devops-nodejs-vm/files/deploy_spec.yaml similarity index 100% rename from app-dev/devops-and-containers/devops/devops-nodejs-vm/deploy_spec.yaml rename to app-dev/devops-and-containers/devops/devops-nodejs-vm/files/deploy_spec.yaml diff --git a/app-dev/devops-and-containers/devops/devops-nodejs-vm/source/package.json b/app-dev/devops-and-containers/devops/devops-nodejs-vm/files/package.json similarity index 100% rename from app-dev/devops-and-containers/devops/devops-nodejs-vm/source/package.json rename to app-dev/devops-and-containers/devops/devops-nodejs-vm/files/package.json diff --git a/app-dev/devops-and-containers/devops/devops-nodejs-vm/source/server.js b/app-dev/devops-and-containers/devops/devops-nodejs-vm/files/server.js similarity index 100% rename from app-dev/devops-and-containers/devops/devops-nodejs-vm/source/server.js rename to app-dev/devops-and-containers/devops/devops-nodejs-vm/files/server.js