Skip to content

Commit 7267dc7

Browse files
authored
Merge branch 'main' into osrm-rm-mode
2 parents 5f05383 + 333e44f commit 7267dc7

File tree

21 files changed

+129
-14
lines changed

21 files changed

+129
-14
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# someone opens a pull request.
88

99
# Everything requires Platform team review by default
10-
* @johnoloughlin @garyloug @palade @rranjan3 @krishnajs @hyunsun @scottmbaker @damiankopyto @cjnolan @SushilLakra @soniabha-intc @guptagunjan @sys-orch-approve
10+
* @johnoloughlin @garyloug @palade @rranjan3 @krishnajs @hyunsun @scottmbaker @damiankopyto @cjnolan @SushilLakra @soniabha-intc @guptagunjan @sys-orch-approve @ram-srini @shankarsrinivas1
1111

1212
# Dependabot is used to manage dependencies in this repository. It is configured to automatically open pull requests to
1313
# update dependencies when new versions are available. The following files are managed by Dependabot and do not require

.github/actions/cypress/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ runs:
4040
with:
4141
repository: open-edge-platform/orch-ui
4242
path: orch-ui
43-
ref: d17f65821d4879b80300d942966ca919f2a51924
43+
ref: 1d2a8182411f24dad5bd317f42fe9f631fdcf01a
4444
persist-credentials: false
4545
- run: git log -1
4646
shell: bash

argocd/applications/configs/infra-managers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ telemetry-manager:
6969

7070
os-resource-manager:
7171
managerArgs:
72-
osProfileRevision: 0.8.5
72+
osProfileRevision: ~0.8.5
7373
osSecurityFeatureEnable: false
7474
inventoryAddress: "inventory.orch-infra.svc.cluster.local:50051"
7575
traceURL: "orchestrator-observability-opentelemetry-collector.orch-platform.svc:4318"
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# SPDX-FileCopyrightText: 2025 Intel Corporation
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
5+
image:
6+
registry: {{.Values.argo.containerRegistryURL }}
7+
repository: common/tenancy-init
8+
imagePullSecrets:
9+
{{- with .Values.argo.imagePullSecrets }}
10+
{{- toYaml . | nindent 2 }}
11+
{{- end }}
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# SPDX-FileCopyrightText: 2025 Intel Corporation
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
5+
{{- $appName := "tenancy-init" }}
6+
{{- $namespace := "orch-iam" }}
7+
{{- $syncWave := "1200" }}
8+
---
9+
{{- if and (index .Values.argo.enabled "multitenant_gateway") (index .Values.argo.enabled "defaultTenancy") }}
10+
apiVersion: argoproj.io/v1alpha1
11+
kind: Application
12+
metadata:
13+
annotations:
14+
argocd.argoproj.io/sync-wave: "{{ $syncWave }}"
15+
name: {{$appName}}
16+
namespace: {{ required "A valid namespace entry required!" .Values.argo.namespace }}
17+
finalizers:
18+
- resources-finalizer.argocd.argoproj.io
19+
spec:
20+
project: {{ required "A valid projectName entry required!" .Values.argo.project }}
21+
sources:
22+
- repoURL: {{ required "A valid chartRepoURL entry required!" .Values.argo.chartRepoURL }}
23+
chart: common/charts/{{$appName}}
24+
targetRevision: 25.2.7
25+
helm:
26+
releaseName: {{$appName}}
27+
valuesObject:
28+
{{- $customFile := printf "custom/%s.tpl" $appName }}
29+
{{- $customConfig := tpl (.Files.Get $customFile) . | fromYaml }}
30+
{{- $baseFile := printf "configs/%s.yaml" $appName }}
31+
{{- $baseConfig := .Files.Get $baseFile|fromYaml}}
32+
{{- $overwrite := (get .Values.postCustomTemplateOverwrite $appName ) | default dict }}
33+
{{- mergeOverwrite $baseConfig $customConfig $overwrite | toYaml | nindent 10 }}
34+
destination:
35+
namespace: {{$namespace}}
36+
server: {{ required "A valid targetServer entry required!" .Values.argo.targetServer }}
37+
syncPolicy:
38+
{{- if .Values.argo.autosync }}
39+
automated:
40+
prune: false
41+
selfHeal: false
42+
retry:
43+
limit: 5
44+
backoff:
45+
duration: 5s
46+
maxDuration: 3m0s
47+
factor: 2
48+
{{- end }}
49+
syncOptions:
50+
- CreateNamespace=true
51+
{{- end }}

argocd/applications/templates/web-ui-admin.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
sources:
2222
- repoURL: {{ required "A valid chartRepoURL entry required!" .Values.argo.chartRepoURL }}
2323
chart: orch-ui/charts/orch-ui-admin
24-
targetRevision: 3.2.0
24+
targetRevision: 3.2.1
2525
helm:
2626
releaseName: web-ui
2727
valuesObject:

argocd/applications/templates/web-ui-app-orch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
sources:
2222
- repoURL: {{ required "A valid chartRepoURL entry required!" .Values.argo.chartRepoURL }}
2323
chart: orch-ui/charts/orch-ui-app-orch
24-
targetRevision: 3.2.2
24+
targetRevision: 3.2.3
2525
helm:
2626
releaseName: web-ui
2727
valuesObject:

argocd/applications/templates/web-ui-cluster-orch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
sources:
2222
- repoURL: {{ required "A valid chartRepoURL entry required!" .Values.argo.chartRepoURL }}
2323
chart: orch-ui/charts/orch-ui-cluster-orch
24-
targetRevision: 3.2.2
24+
targetRevision: 3.2.3
2525
helm:
2626
releaseName: web-ui
2727
valuesObject:

argocd/applications/templates/web-ui-infra.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
sources:
2222
- repoURL: {{ required "A valid chartRepoURL entry required!" .Values.argo.chartRepoURL }}
2323
chart: orch-ui/charts/orch-ui-infra
24-
targetRevision: 3.2.4
24+
targetRevision: 3.2.6
2525
helm:
2626
releaseName: web-ui
2727
valuesObject:

argocd/applications/templates/web-ui-root.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
sources:
2222
- repoURL: {{ required "A valid chartRepoURL entry required!" .Values.argo.chartRepoURL }}
2323
chart: orch-ui/charts/orch-ui-root
24-
targetRevision: 3.2.1
24+
targetRevision: 3.2.3
2525
helm:
2626
releaseName: web-ui
2727
valuesObject:

0 commit comments

Comments
 (0)