Skip to content

Commit

Permalink
Merge pull request #13 from AntonioDiTuri/microservices-demo
Browse files Browse the repository at this point in the history
Microservices demo
  • Loading branch information
nikimanoledaki committed Jan 31, 2024
2 parents 9a8d1e0 + 9c6239b commit 14a057f
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
26 changes: 26 additions & 0 deletions clusters/projects/falco/microservices-demo.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
apiVersion: source.toolkit.fluxcd.io/v1beta2
kind: HelmRepository
metadata:
name: online-boutique
namespace: falco
spec:
interval: 24h
type: oci
url: oci://us-docker.pkg.dev/online-boutique-ci/charts
---
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: online-boutique
namespace: falco
spec:
interval: 24h
chart:
spec:
chart: online-boutique
sourceRef:
kind: HelmRepository
name: online-boutique
releaseName: online-boutique

21 changes: 21 additions & 0 deletions docs/microservices_demo.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# How to install it manually

1. Get access to the dev-cluster (ask Tag/WG leads)

2. run the following command:

```
helm upgrade online-boutique oci://us-docker.pkg.dev/online-boutique-ci/charts/online-boutique --install
```
3. to uninstall

```
helm delete online-boutique
```

# How to install it via flux

We opted for installing microservice demo using flux-oci: example here: https://fluxcd.io/flux/cheatsheets/oci-artifacts/.
A tmp configuration file can be found under clusters/micrservices-demo.yaml


0 comments on commit 14a057f

Please sign in to comment.