developer cloud service
Sending Notifications of Failed Health Checks in Oracle Cloud Infrastructure
Notifications service is a broadcast message delivery based in publish-subscribe mechanism. Health Checks service provides users with high frequency external monitoring to determine the availability and performance of any publicly facing service, including hosted websites, API endpoints, or externally facing load balancers. One: Create a Health Check Click the HealthChecks menu option located in the Monitoring […]
MoreAutomating OKE Clusters start/stop with DevCS
Reusing the work published here, here and here we are showing today how to schedule the start/stop sequence of an OKE cluster with Developer Cloud Service. Start job Create a build with the step as follows: git clone https://github.com/javiermugueta/oke-cluster-start-stop.git cd oke-cluster-start-stop ./oke-cluster-start-stop.sh -r=<region> -c=<compartment> -k=<clustername> -o=start The rest of steps pretty much equal to explained […]
MoreSIMPLE SCRIPT TO ARCHIVE OCI AUDIT RECORDS TO OBJECT STORAGE
Update oct 2021: added recursive logic over compartments hierarchy Oracle Cloud provides out the box audit records that can be obtained by tools such the dashboard portal, the APIs like rest/go/java/phy and the CLI. In this post we are explaining how to automate the archiving of the trails to an object storage bucket using the […]
MoreIntegrating DevCS Notifications with Slack Using WebHooks
One interesting thing regarding CI and DevOps is the ability to be notified when things happen without the need to log in a web app every hour and see what happened. Oracle Developer Cloud Service (DevCS -a CI/DevOps tool from Oracle Cloud-) can be configured to send notifications to several channels, one of them is […]
MoreImplementing Deploy Steps in DevCS Builds
Classic approach for deploying artefacts to Oracle Cloud Java and Application Container instances was utilising “Deployments”: There is a new option, now you can made deploys in build steps. For doing that you must first create an “Environment”, watch this video to see how: After that, go to one of your builds and add an […]
MoreMoving Git Repo from DevCS “classic”to DevCS OCI (in fact you can import whatever git repository you have access to)
I recommend moving to the DevCS OCI “flavour”, it has many advantages. Fortunately is easy to import the repos. First, click on [+Create Repository] Second, provide the information coming from the old repo, and click [Create] and in a better of seconds it is imported and you are done! Hope it helps! 🙂
MoreMove Developer Cloud Service Project Between Environments in 15 Minutes
The idea here is how to move your CI/CD environment from one environment to another, for instance from presales to delivery. Developer Cloud Service (DevCS) is an CI/CD environment included at no extra cost in your Pass subcription providing git repo, maven repo, wiki, build automation (Hudson/Jenkins), deployment automation, webhooks, issues-agile-scrum-camban dashboard, merges, … What […]
MorePush project to Oracle Developer Cloud Service
Create a new project in DevCS or add a new repo to an existing project and get the repository url (ssh or https), for example: https://javier.mugueta%40oracle.com@developer.em2.oraclecloud.com/developerxxxx/s/developerxxxxxx_prueba_5401/scm/prueba.git Now in your local machine: cd <yourworkingdirectory> git init test cd test git remote add cloud https://javier.mugueta%40oracle.com@developer.em2.oraclecloud.com/developerxxxx/s/developerxxxxxx_prueba_5401/scm/prueba.git git remote -v git pull cloud master cp -r ../scfcot/* . (copy source code […]
More