Skip to content

Commit

Permalink
openweb uiのappを作成
Browse files Browse the repository at this point in the history
  • Loading branch information
piny940 committed Jan 29, 2025
1 parent 252787f commit c990007
Show file tree
Hide file tree
Showing 6 changed files with 64 additions and 0 deletions.
13 changes: 13 additions & 0 deletions kubernetes/_flux/production/kustomizations/open-webui.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
apiVersion: kustomize.toolkit.fluxcd.io/v1
kind: Kustomization
metadata:
name: open-webui
namespace: flux-system
spec:
interval: 3m
path: ./kubernetes/apps/open-webui/production
prune: true
sourceRef:
kind: GitRepository
name: flux-system
namespace: flux-system
13 changes: 13 additions & 0 deletions kubernetes/_flux/staging/kustomizations/open-webui.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
apiVersion: kustomize.toolkit.fluxcd.io/v1
kind: Kustomization
metadata:
name: open-webui
namespace: flux-system
spec:
interval: 3m
path: ./kubernetes/apps/open-webui/staging
prune: true
sourceRef:
kind: GitRepository
name: apps-git
namespace: flux-system
6 changes: 6 additions & 0 deletions kubernetes/apps/open-webui/base/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: []
# configMapGenerator:
# - name: open-webui-conf
# literals: []
13 changes: 13 additions & 0 deletions kubernetes/apps/open-webui/production/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: open-webui
resources:
- ../base
labels:
- pairs:
env: production
includeSelectors: true
# configMapGenerator:
# - name: open-webui-conf
# behavior: merge
# literals: []
14 changes: 14 additions & 0 deletions kubernetes/apps/open-webui/staging/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: open-webui
namePrefix: stg-
resources:
- ../base
labels:
- pairs:
env: staging
includeSelectors: true
# configMapGenerator:
# - name: open-webui-conf
# behavior: merge
# literals: []
5 changes: 5 additions & 0 deletions kubernetes/namespaces/namespaces.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,8 @@ apiVersion: v1
kind: Namespace
metadata:
name: velero
---
apiVersion: v1
kind: Namespace
metadata:
name: open-webui

0 comments on commit c990007

Please sign in to comment.