Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
4665adf0d8 | |||
96a52c7117 | |||
b985c410ab | |||
aa67cd984b | |||
6f18a83d43 | |||
f82ed1781e | |||
f8eaabd885 |
@ -14,8 +14,8 @@ type: application
|
|||||||
|
|
||||||
# This is the chart version. This version number should be incremented each time you make changes
|
# This is the chart version. This version number should be incremented each time you make changes
|
||||||
# to the chart and its templates, including the app version.
|
# to the chart and its templates, including the app version.
|
||||||
version: 0.1.3
|
version: 0.1.6
|
||||||
|
|
||||||
# This is the version number of the application being deployed. This version number should be
|
# This is the version number of the application being deployed. This version number should be
|
||||||
# incremented each time you make changes to the application.
|
# incremented each time you make changes to the application.
|
||||||
appVersion: 0.1.0
|
appVersion: 0.1.1
|
||||||
|
@ -47,13 +47,21 @@ data:
|
|||||||
SENTRY_DSN: "{{ .Values.jobOrchestrator.sentry_dsn }}"
|
SENTRY_DSN: "{{ .Values.jobOrchestrator.sentry_dsn }}"
|
||||||
URSIM_CONTROL_IMAGE: "registry.kmlabz.com/universalrobots/single_ursim_control:latest"
|
URSIM_CONTROL_IMAGE: "registry.kmlabz.com/universalrobots/single_ursim_control:latest"
|
||||||
URSIM_CONTROL_CONFIGMAP: "single-ursim-controller-config"
|
URSIM_CONTROL_CONFIGMAP: "single-ursim-controller-config"
|
||||||
|
LINK_QUALITY_REPORT_URL: "{{ .Values.jobOrchestrator.link_quality_report_url }}"
|
||||||
---
|
---
|
||||||
apiVersion: v1
|
apiVersion: types.kubefed.io/v1beta1
|
||||||
kind: ConfigMap
|
kind: FederatedConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
name: single-ursim-controller-config
|
name: single-ursim-controller-config
|
||||||
|
spec:
|
||||||
|
template:
|
||||||
data:
|
data:
|
||||||
DRY_RUN: "{{ .Values.singleURSimControl.dry_run }}"
|
DRY_RUN: "{{ .Values.singleURSimControl.dry_run }}"
|
||||||
REDIS_URL: "redis://controller-redis/0"
|
REDIS_URL: "redis://controller-redis/0"
|
||||||
SENTRY_DSN: "{{ .Values.singleURSimControl.sentry_dsn }}"
|
SENTRY_DSN: "{{ .Values.singleURSimControl.sentry_dsn }}"
|
||||||
DEBUG: "{{ .Values.singleURSimControl.debug }}"
|
DEBUG: "{{ .Values.singleURSimControl.debug }}"
|
||||||
|
placement:
|
||||||
|
clusters:
|
||||||
|
- name: cloud
|
||||||
|
- name: edge-1
|
||||||
|
- name: edge-2
|
@ -1,8 +1,13 @@
|
|||||||
---
|
---
|
||||||
apiVersion: apps/v1
|
apiVersion: types.kubefed.io/v1beta1
|
||||||
kind: Deployment
|
kind: FederatedDeployment
|
||||||
metadata:
|
metadata:
|
||||||
name: controller-redis
|
name: controller-redis
|
||||||
|
spec:
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: controller-redis
|
||||||
spec:
|
spec:
|
||||||
replicas: 1
|
replicas: 1
|
||||||
selector:
|
selector:
|
||||||
@ -16,11 +21,18 @@ spec:
|
|||||||
containers:
|
containers:
|
||||||
- name: controller-redis
|
- name: controller-redis
|
||||||
image: redis
|
image: redis
|
||||||
|
placement:
|
||||||
|
clusters:
|
||||||
|
- name: cloud
|
||||||
|
- name: edge-1
|
||||||
|
- name: edge-2
|
||||||
---
|
---
|
||||||
apiVersion: v1
|
apiVersion: types.kubefed.io/v1beta1
|
||||||
kind: Service
|
kind: FederatedService
|
||||||
metadata:
|
metadata:
|
||||||
name: controller-redis
|
name: controller-redis
|
||||||
|
spec:
|
||||||
|
template:
|
||||||
spec:
|
spec:
|
||||||
selector:
|
selector:
|
||||||
app: controller-redis
|
app: controller-redis
|
||||||
@ -29,3 +41,8 @@ spec:
|
|||||||
protocol: TCP
|
protocol: TCP
|
||||||
port: 6379
|
port: 6379
|
||||||
targetPort: 6379
|
targetPort: 6379
|
||||||
|
placement:
|
||||||
|
clusters:
|
||||||
|
- name: cloud
|
||||||
|
- name: edge-1
|
||||||
|
- name: edge-2
|
||||||
|
@ -4,8 +4,8 @@ apiVersion: rbac.authorization.k8s.io/v1
|
|||||||
metadata:
|
metadata:
|
||||||
name: job-orchestrator-role
|
name: job-orchestrator-role
|
||||||
rules:
|
rules:
|
||||||
- apiGroups: [""]
|
- apiGroups: ["types.kubefed.io"]
|
||||||
resources: ["pods"]
|
resources: ["federatedjobs"]
|
||||||
verbs: ["get", "list", "watch", "create", "update", "patch", "delete"]
|
verbs: ["get", "list", "watch", "create", "update", "patch", "delete"]
|
||||||
---
|
---
|
||||||
kind: RoleBinding
|
kind: RoleBinding
|
||||||
|
@ -3,6 +3,7 @@ k8s:
|
|||||||
regcred_name: regcred
|
regcred_name: regcred
|
||||||
jobOrchestrator:
|
jobOrchestrator:
|
||||||
sentry_dsn: ""
|
sentry_dsn: ""
|
||||||
|
link_quality_report_url: "http://192.168.110.100:30420/report/link"
|
||||||
programService:
|
programService:
|
||||||
sentry_dsn: ""
|
sentry_dsn: ""
|
||||||
singleURSimControl:
|
singleURSimControl:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user