Skip to content

Commit ab0ecde

Browse files
authored
Merge pull request #49 from oracle-devrel/helm
helm attestation
2 parents 5931d86 + 0c29095 commit ab0ecde

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+5651
-5
lines changed

AIO.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
## All in One reference for samples - In Alphabetical (A to Z) order.
2-
32
- A sample to run OCI AI Anomaly detection from OCI Build-pipeline - https://github.com/oracle-devrel/oci-devops-examples/tree/main/oci-build-examples/oci-devops-anomaly-detection
43
- A way (workaround) to execute commands on to a Windows machine using OCI Run command agent from OCI Build pipeline. - https://github.com/oracle-devrel/oci-devops-examples/tree/main/oci-build-examples/oci-devops-connect-to-windows-from-buildmachines
54
- Access resource with Private IP from OCI Build runner - https://github.com/oracle-devrel/oci-devops-examples/tree/main/oci-build-examples/oci-devops-pa-with-private-oke
@@ -31,5 +30,6 @@
3130
- Sample illustration of OCI DevOps deployment pipeline with *STAGE LEVEL PARAMETERS* - https://github.com/oracle-devrel/oci-devops-examples/blob/main/oci-deployment-examples/oci-deployment-stagelevelparams
3231
- Sample illustration of OCI DevOps deployment pipeline with DevOps Deploy Shell stage - https://github.com/oracle-devrel/oci-devops-examples/blob/main/oci-deployment-examples/oci-deployment-shell-stages
3332
- Sample illustration of OCI Devops deployment pipeline to update the deployment environment - Instances dynamically - https://github.com/oracle-devrel/oci-devops-examples/blob/main/oci-deployment-examples/oci-devops-instance-env-dynamic-update
33+
- Sample illustration of verifying the *integrity of Helm chart* before the deployment https://github.com/oracle-devrel/oci-devops-examples/blob/main/oci-deployment-examples/oci-deployment-with-helm-attestation
3434
- 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
3535
- Trigger build-pipeline from OCI Code repo on file modifications . - https://github.com/oracle-devrel/oci-devops-examples/blob/main/oci-coderepo-examples/oci-devops-coderepo-filebasedtrigger

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@ The service also provides private Git repositories to store your code and it sup
1818
- [⚡ OCI Devops Projects,Policies and Groups - sample](./oci-config-examples/README.md)
1919

2020
### Recent samples.
21-
21+
- 🛎️[Sample illustration of verifying the *integrity of Helm chart* before the deployment](https://github.com/oracle-devrel/oci-devops-examples/blob/main/oci-deployment-examples/oci-deployment-with-helm-attestation)
2222
- 🛎️[Sample illustration of OCI DevOps deployment pipeline with DevOps Deploy Shell stage.]( https://github.com/oracle-devrel/oci-devops-examples/blob/main/oci-deployment-examples/oci-deployment-shell-stages)
2323
- 🛎️[A sample to run OCI AI Anomaly detection from OCI Build-pipeline.](https://github.com/oracle-devrel/oci-devops-examples/tree/main/oci-build-examples/oci-devops-anomaly-detection)
24-
- 🛎️[A way (workaround) to execute commands on to a Windows machine using OCI Run command agent from OCI Build pipeline.](https://github.com/oracle-devrel/oci-devops-examples/tree/main/oci-build-examples/oci-devops-connect-to-windows-from-buildmachines)
2524
- 🛎[Sample illustration of OCI DevOps deployment pipeline with stage level paramters.]( https://github.com/oracle-devrel/oci-devops-examples/blob/main/oci-deployment-examples/oci-deployment-stagelevelparams)
2625

2726
## All samples (A to Z sorted order)

oci-deployment-examples/README.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,18 @@ All about OCI devops deployment samples ..
2222
<details>
2323
<summary>Github Action - click to expand</summary>
2424

25-
* [Deploy to OKE with Github actions](.//oci-devops-githubactions-deploy/)
25+
* [Deploy to OKE with Github actions](./oci-devops-githubactions-deploy/)
2626

2727
</details>
2828

2929

30+
<details>
31+
<summary>Helm deployments - click to expand</summary>
32+
33+
* [Deploy to OKE using signed helm chart ](./oci-deployment-with-helm-attestation/)
34+
35+
</details>
36+
3037
<details>
3138
<summary>Kubernetes deployments - click to expand</summary>
3239

@@ -35,6 +42,21 @@ All about OCI devops deployment samples ..
3542

3643
</details>
3744

45+
<details>
46+
<summary>Shell stages - click to expand</summary>
47+
48+
* [Using shell stages with deployment pipeline](./oci-deployment-shell-stages/)
49+
50+
</details>
51+
52+
<details>
53+
<summary>Set Stage level parameters - click to expand</summary>
54+
55+
* [Set Stage level parameters ](./oci-deployment-stagelevelparams/)
56+
57+
</details>
58+
59+
3860
### Back to examples.
3961
----
4062

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
FROM node:12-alpine
2+
3+
# following https://nodejs.org/en/docs/guides/nodejs-docker-webapp/
4+
5+
WORKDIR /usr/src/node-getting-started
6+
7+
# Install app dependencies
8+
# A wildcard is used to ensure both package.json AND package-lock.json are copied
9+
# where available (npm@5+)
10+
COPY package*.json ./
11+
12+
# If you are building your code for production
13+
RUN npm ci --only=production
14+
15+
# Bundle app source
16+
COPY . .
17+
18+
EXPOSE 3000
19+
CMD [ "node", "./bin/www" ]

0 commit comments

Comments
 (0)