Skip to content

Commit

Permalink
feat(fission): install fission faas framework
Browse files Browse the repository at this point in the history
  • Loading branch information
mrsimonemms committed Nov 23, 2024
1 parent 8d2b897 commit 4b4bafa
Show file tree
Hide file tree
Showing 6 changed files with 112 additions and 0 deletions.
24 changes: 24 additions & 0 deletions registry/clusters/dev/components/fission.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: fission-components
namespace: argocd
annotations:
argocd.argoproj.io/sync-wave: "10"
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: default
source:
repoURL: https://github.com/mrsimonemms/infrastructure
path: registry/components/fission
targetRevision: HEAD
destination:
server: https://kubernetes.default.svc
namespace: fission
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true
24 changes: 24 additions & 0 deletions registry/clusters/prod/components/fission.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: fission-components
namespace: argocd
annotations:
argocd.argoproj.io/sync-wave: "10"
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: default
source:
repoURL: https://github.com/mrsimonemms/infrastructure
path: registry/components/fission
targetRevision: HEAD
destination:
server: https://kubernetes.default.svc
namespace: fission
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true
27 changes: 27 additions & 0 deletions registry/components/fission/application.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: fission
namespace: argocd
annotations:
argocd.argoproj.io/sync-wave: "10"
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: default
source:
chart: fission-all
repoURL: https://fission.github.io/fission-charts
targetRevision: v1.20.5
helm:
valuesObject:
analytics: false
destination:
server: https://kubernetes.default.svc
namespace: fission
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true
25 changes: 25 additions & 0 deletions registry/components/fission/crds.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: fission-crds
namespace: argocd
annotations:
argocd.argoproj.io/sync-wave: "1"
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: default
source:
path: crds/v1
repoURL: https://github.com/fission/fission
targetRevision: v1.20.5
destination:
server: https://kubernetes.default.svc
namespace: fission
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true
- ServerSideApply=true
6 changes: 6 additions & 0 deletions registry/components/fission/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- application.yaml
- crds.yaml
- namespace.yaml
6 changes: 6 additions & 0 deletions registry/components/fission/namespace.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
apiVersion: v1
kind: Namespace
metadata:
name: fission
annotations:
argocd.argoproj.io/sync-wave: "-1"

0 comments on commit 4b4bafa

Please sign in to comment.