change folder
This commit is contained in:
16
bases/fleets/config.yaml
Normal file
16
bases/fleets/config.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
dev_env: true
|
||||
|
||||
storage:
|
||||
db:
|
||||
type: mongodb
|
||||
mongodb:
|
||||
uri:
|
||||
db_name:
|
||||
collections:
|
||||
vehicles: fleet_vehicles
|
||||
bookings: fleet_bookings
|
||||
services:
|
||||
grpc:
|
||||
enable: true
|
||||
port: 8080
|
||||
|
||||
41
bases/fleets/deployment.yaml
Normal file
41
bases/fleets/deployment.yaml
Normal file
@@ -0,0 +1,41 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: test-coopgo-fleets
|
||||
spec:
|
||||
replicas: 1
|
||||
template:
|
||||
spec:
|
||||
containers:
|
||||
- name: fleets
|
||||
image: docker.io/library/fleets-v3:local
|
||||
env:
|
||||
- name: STORAGE_DB_MONGODB_URI
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: db-secret
|
||||
key: storage_db_mongodb_uri
|
||||
- name: STORAGE_DB_MONGODB_DB_NAME
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: db-secret
|
||||
key: storage_db_mongodb_db_name
|
||||
ports:
|
||||
- name: http
|
||||
containerPort: 8080
|
||||
protocol: TCP
|
||||
volumeMounts:
|
||||
- name: fleets-config-volume
|
||||
mountPath: /config.yaml
|
||||
subPath: config.yaml
|
||||
imagePullSecrets:
|
||||
- name: regcred
|
||||
volumes:
|
||||
- name: fleets-config-volume
|
||||
configMap:
|
||||
name: test-fleets-config
|
||||
items:
|
||||
- key: config.yaml
|
||||
path: config.yaml
|
||||
|
||||
|
||||
15
bases/fleets/kustomization.yaml
Normal file
15
bases/fleets/kustomization.yaml
Normal file
@@ -0,0 +1,15 @@
|
||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
|
||||
commonLabels:
|
||||
app.kubernetes.io/name: test-coopgo-fleets
|
||||
app.kubernetes.io/instance: test-coopgo-fleets
|
||||
|
||||
configMapGenerator:
|
||||
- name: test-fleets-config
|
||||
files:
|
||||
- config.yaml
|
||||
|
||||
resources:
|
||||
- deployment.yaml
|
||||
- service.yaml
|
||||
8
bases/fleets/service.yaml
Normal file
8
bases/fleets/service.yaml
Normal file
@@ -0,0 +1,8 @@
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: test-coopgo-fleets-svc
|
||||
spec:
|
||||
ports:
|
||||
- port: 8080
|
||||
protocol: TCP
|
||||
Reference in New Issue
Block a user