Adjustments
This commit is contained in:
parent
1ef92e5975
commit
4ef9bb399f
@ -30,6 +30,10 @@ Execute following script to create a single node development k8s cluster
|
|||||||
create_kind_cluster.sh
|
create_kind_cluster.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
|
WARNING APACHE & NGINX ARE NOT RUNNING:
|
||||||
|
- `sudo /etc/init.d/apache2 stop`
|
||||||
|
- `sudo nginx -s stop`
|
||||||
|
|
||||||
It will create a *opencloud* docker container running kubernetes services.
|
It will create a *opencloud* docker container running kubernetes services.
|
||||||
|
|
||||||
## Clone all the microservices repositories taking part of the opencloud environment
|
## Clone all the microservices repositories taking part of the opencloud environment
|
||||||
|
@ -2,13 +2,10 @@
|
|||||||
|
|
||||||
|
|
||||||
REPOS=(
|
REPOS=(
|
||||||
"https://cloud.o-forge.io/core/oc-aggregator.git"
|
|
||||||
"https://cloud.o-forge.io/core/oc-auth.git"
|
"https://cloud.o-forge.io/core/oc-auth.git"
|
||||||
"https://cloud.o-forge.io/core/oc-catalog.git"
|
"https://cloud.o-forge.io/core/oc-catalog.git"
|
||||||
"https://cloud.o-forge.io/core/oc-datacenter.git"
|
"https://cloud.o-forge.io/core/oc-datacenter.git"
|
||||||
"https://cloud.o-forge.io/core/oc-discovery.git"
|
|
||||||
"https://cloud.o-forge.io/core/oc-front.git"
|
"https://cloud.o-forge.io/core/oc-front.git"
|
||||||
"https://cloud.o-forge.io/core/oc-discovery.git"
|
|
||||||
"https://cloud.o-forge.io/core/oc-monitord.git"
|
"https://cloud.o-forge.io/core/oc-monitord.git"
|
||||||
"https://cloud.o-forge.io/core/oc-peer.git"
|
"https://cloud.o-forge.io/core/oc-peer.git"
|
||||||
"https://cloud.o-forge.io/core/oc-shared.git"
|
"https://cloud.o-forge.io/core/oc-shared.git"
|
||||||
@ -20,6 +17,7 @@ REPOS=(
|
|||||||
|
|
||||||
# Function to clone repositories
|
# Function to clone repositories
|
||||||
clone_repo() {
|
clone_repo() {
|
||||||
|
local branch=${2:-main}
|
||||||
local repo_url="$1"
|
local repo_url="$1"
|
||||||
local repo_name=$(basename "$repo_url" .git)
|
local repo_name=$(basename "$repo_url" .git)
|
||||||
|
|
||||||
@ -27,7 +25,7 @@ clone_repo() {
|
|||||||
|
|
||||||
if [ -d "$repo_name" ]; then
|
if [ -d "$repo_name" ]; then
|
||||||
echo "Repository '$repo_name' already exists. Pulling latest changes..."
|
echo "Repository '$repo_name' already exists. Pulling latest changes..."
|
||||||
cd "$repo_name" && git pull && cd ..
|
cd "$repo_name" && git checkout $branch && git pull && cd ..
|
||||||
else
|
else
|
||||||
echo "Cloning repository: $repo_name"
|
echo "Cloning repository: $repo_name"
|
||||||
git clone "$repo_url"
|
git clone "$repo_url"
|
||||||
@ -37,10 +35,10 @@ clone_repo() {
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
branch=${1:-main}
|
||||||
# Iterate through each repository in the list
|
# Iterate through each repository in the list
|
||||||
for repo in "${REPOS[@]}"; do
|
for repo in "${REPOS[@]}"; do
|
||||||
clone_repo "$repo"
|
clone_repo "$repo" "$branch"
|
||||||
done
|
done
|
||||||
|
|
||||||
echo "All repositories processed successfully."
|
echo "All repositories processed successfully."
|
||||||
|
5
install.sh
Normal file
5
install.sh
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
RELEASE_NAME=${1:-dev}
|
||||||
|
RELEASE_NAMESPACE=${1:-dev}
|
||||||
|
|
||||||
|
helm install ${RELEASE_NAME} opencloud -n ${RELEASE_NAMESPACE} --create-namespace -f opencloud/${RELEASE_NAME}-values.yaml
|
@ -1,5 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
RELEASE_NAME=dev
|
|
||||||
RELEASE_NAMESPACE=dev
|
|
||||||
|
|
||||||
helm install ${RELEASE_NAME} opencloud -n ${RELEASE_NAMESPACE} --create-namespace -f opencloud/dev-values.yaml
|
|
@ -1,5 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
RELEASE_NAME=prod
|
|
||||||
RELEASE_NAMESPACE=prod
|
|
||||||
|
|
||||||
helm install ${RELEASE_NAME} opencloud -n ${RELEASE_NAMESPACE} --create-namespace -f opencloud/prod-values.yaml
|
|
@ -243,7 +243,6 @@ keto:
|
|||||||
name: open-cloud
|
name: open-cloud
|
||||||
dsn: memory
|
dsn: memory
|
||||||
|
|
||||||
|
|
||||||
loki:
|
loki:
|
||||||
enabled: true
|
enabled: true
|
||||||
loki:
|
loki:
|
||||||
@ -470,17 +469,6 @@ ocSchedulerd:
|
|||||||
cpu: "128m"
|
cpu: "128m"
|
||||||
memory: "256Mi"
|
memory: "256Mi"
|
||||||
|
|
||||||
ocDiscovery:
|
|
||||||
enabled: true
|
|
||||||
image: oc/oc-discovery:0.0.1
|
|
||||||
resources:
|
|
||||||
limits:
|
|
||||||
cpu: "128m"
|
|
||||||
memory: "256Mi"
|
|
||||||
requests:
|
|
||||||
cpu: "128m"
|
|
||||||
memory: "256Mi"
|
|
||||||
|
|
||||||
ocScheduler:
|
ocScheduler:
|
||||||
enabled: true
|
enabled: true
|
||||||
image: oc/oc-scheduler:0.0.1
|
image: oc/oc-scheduler:0.0.1
|
||||||
@ -492,17 +480,6 @@ ocScheduler:
|
|||||||
cpu: "128m"
|
cpu: "128m"
|
||||||
memory: "256Mi"
|
memory: "256Mi"
|
||||||
|
|
||||||
ocAggregator:
|
|
||||||
enabled: true
|
|
||||||
image: oc/oc-aggregator:0.0.1
|
|
||||||
resources:
|
|
||||||
limits:
|
|
||||||
cpu: "128m"
|
|
||||||
memory: "256Mi"
|
|
||||||
requests:
|
|
||||||
cpu: "128m"
|
|
||||||
memory: "256Mi"
|
|
||||||
|
|
||||||
docker-registry-ui:
|
docker-registry-ui:
|
||||||
enabled: true
|
enabled: true
|
||||||
ui:
|
ui:
|
||||||
|
@ -469,17 +469,6 @@ ocSchedulerd:
|
|||||||
cpu: "128m"
|
cpu: "128m"
|
||||||
memory: "256Mi"
|
memory: "256Mi"
|
||||||
|
|
||||||
ocDiscovery:
|
|
||||||
enabled: true
|
|
||||||
image: "registry-opencloud.pf.irt-saintexupery.com/oc-discovery:0.0.1"
|
|
||||||
resources:
|
|
||||||
limits:
|
|
||||||
cpu: "128m"
|
|
||||||
memory: "256Mi"
|
|
||||||
requests:
|
|
||||||
cpu: "128m"
|
|
||||||
memory: "256Mi"
|
|
||||||
|
|
||||||
ocScheduler:
|
ocScheduler:
|
||||||
enabled: true
|
enabled: true
|
||||||
image: "registry-opencloud.pf.irt-saintexupery.com/oc-scheduler:0.0.1"
|
image: "registry-opencloud.pf.irt-saintexupery.com/oc-scheduler:0.0.1"
|
||||||
@ -491,17 +480,6 @@ ocScheduler:
|
|||||||
cpu: "128m"
|
cpu: "128m"
|
||||||
memory: "256Mi"
|
memory: "256Mi"
|
||||||
|
|
||||||
ocAggregator:
|
|
||||||
enabled: true
|
|
||||||
image: "registry-opencloud.pf.irt-saintexupery.com/oc-aggregator:0.0.1"
|
|
||||||
resources:
|
|
||||||
limits:
|
|
||||||
cpu: "128m"
|
|
||||||
memory: "256Mi"
|
|
||||||
requests:
|
|
||||||
cpu: "128m"
|
|
||||||
memory: "256Mi"
|
|
||||||
|
|
||||||
docker-registry-ui:
|
docker-registry-ui:
|
||||||
enabled: true
|
enabled: true
|
||||||
ui:
|
ui:
|
||||||
|
@ -1,39 +0,0 @@
|
|||||||
{{- if index .Values.ocAggregator.enabled }}
|
|
||||||
apiVersion: apps/v1
|
|
||||||
kind: Deployment
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
app: oc-aggregator
|
|
||||||
name: {{ .Release.Name }}-oc-aggregator
|
|
||||||
spec:
|
|
||||||
replicas: 1
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
app: oc-aggregator
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
app: oc-aggregator
|
|
||||||
spec:
|
|
||||||
{{- if or (eq .Values.env "prod") (eq .Values.env "staging") }}
|
|
||||||
imagePullSecrets:
|
|
||||||
- name: regcred
|
|
||||||
{{- end }}
|
|
||||||
containers:
|
|
||||||
- image: "{{ .Values.ocAggregator.image }}"
|
|
||||||
name: oc-aggregator
|
|
||||||
envFrom:
|
|
||||||
- configMapRef:
|
|
||||||
name: opencloud-config
|
|
||||||
ports:
|
|
||||||
- name: http
|
|
||||||
containerPort: 8080
|
|
||||||
protocol: TCP
|
|
||||||
resources:
|
|
||||||
limits:
|
|
||||||
cpu: "{{ .Values.ocAggregator.resources.limits.cpu }}"
|
|
||||||
memory: "{{ .Values.ocAggregator.resources.limits.memory }}"
|
|
||||||
requests:
|
|
||||||
cpu: "{{ .Values.ocAggregator.resources.requests.cpu }}"
|
|
||||||
memory: "{{ .Values.ocAggregator.resources.requests.memory }}"
|
|
||||||
{{- end }}
|
|
@ -1,32 +0,0 @@
|
|||||||
{{- if index .Values.ocAggregator.enabled }}
|
|
||||||
apiVersion: traefik.io/v1alpha1
|
|
||||||
kind: IngressRoute
|
|
||||||
metadata:
|
|
||||||
name: oc-aggregator-ingress
|
|
||||||
spec:
|
|
||||||
entryPoints:
|
|
||||||
- web
|
|
||||||
routes:
|
|
||||||
- kind: Rule
|
|
||||||
match: Host(`{{ .Values.host }}`) && PathPrefix(`/aggregator`)
|
|
||||||
priority: 10
|
|
||||||
services:
|
|
||||||
- kind: Service
|
|
||||||
name: oc-aggregator-svc
|
|
||||||
port: 8080
|
|
||||||
middlewares:
|
|
||||||
- name: strip-aggregator-prefix
|
|
||||||
{{- if index .Values.ocAuth.enableTraefikProxyIntegration }}
|
|
||||||
- name: forward-auth
|
|
||||||
{{- end }}
|
|
||||||
|
|
||||||
---
|
|
||||||
apiVersion: traefik.io/v1alpha1
|
|
||||||
kind: Middleware
|
|
||||||
metadata:
|
|
||||||
name: strip-aggregator-prefix
|
|
||||||
spec:
|
|
||||||
stripPrefix:
|
|
||||||
prefixes:
|
|
||||||
- "/aggregator"
|
|
||||||
{{- end }}
|
|
@ -1,17 +0,0 @@
|
|||||||
{{- if index .Values.ocAggregator.enabled }}
|
|
||||||
apiVersion: v1
|
|
||||||
kind: Service
|
|
||||||
metadata:
|
|
||||||
name: oc-aggregator-svc
|
|
||||||
labels:
|
|
||||||
app: oc-aggregator-svc
|
|
||||||
spec:
|
|
||||||
ports:
|
|
||||||
- name: http
|
|
||||||
port: 8080
|
|
||||||
protocol: TCP
|
|
||||||
targetPort: 8080
|
|
||||||
selector:
|
|
||||||
app: oc-aggregator
|
|
||||||
type: ClusterIP
|
|
||||||
{{- end }}
|
|
@ -10,7 +10,6 @@ spec:
|
|||||||
selector:
|
selector:
|
||||||
matchLabels:
|
matchLabels:
|
||||||
app: oc-auth
|
app: oc-auth
|
||||||
strategy: {}
|
|
||||||
template:
|
template:
|
||||||
metadata:
|
metadata:
|
||||||
labels:
|
labels:
|
||||||
@ -47,9 +46,9 @@ spec:
|
|||||||
protocol: TCP
|
protocol: TCP
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
cpu: "{{ .Values.ocFront.resources.limits.cpu }}"
|
cpu: "{{ .Values.ocAuth.resources.limits.cpu }}"
|
||||||
memory: "{{ .Values.ocFront.resources.limits.memory }}"
|
memory: "{{ .Values.ocAuth.resources.limits.memory }}"
|
||||||
requests:
|
requests:
|
||||||
cpu: "{{ .Values.ocFront.resources.requests.cpu }}"
|
cpu: "{{ .Values.ocAuth.resources.requests.cpu }}"
|
||||||
memory: "{{ .Values.ocFront.resources.requests.memory }}"
|
memory: "{{ .Values.ocAuth.resources.requests.memory }}"
|
||||||
{{- end }}
|
{{- end }}
|
@ -8,16 +8,16 @@ spec:
|
|||||||
- web
|
- web
|
||||||
routes:
|
routes:
|
||||||
- kind: Rule
|
- kind: Rule
|
||||||
match: Host(`{{ .Values.host }}`) && PathPrefix(`/auth`)
|
match: Host(`{{ .Values.host }}`) && PathPrefix(`/auth`)
|
||||||
priority: 10
|
priority: 10
|
||||||
services:
|
services:
|
||||||
- kind: Service
|
- kind: Service
|
||||||
name: oc-auth-svc
|
name: oc-auth-svc
|
||||||
port: 8094
|
port: 8080
|
||||||
middlewares:
|
middlewares:
|
||||||
{{- if index .Values.ocAuth.enableTraefikProxyIntegration }}
|
#{{- if index .Values.ocAuth.enableTraefikProxyIntegration }}
|
||||||
- name: forward-auth
|
#- name: forward-auth
|
||||||
{{- end }}
|
#{{- end }}
|
||||||
- name: strip-auth-prefix
|
- name: strip-auth-prefix
|
||||||
---
|
---
|
||||||
apiVersion: traefik.io/v1alpha1
|
apiVersion: traefik.io/v1alpha1
|
||||||
@ -25,7 +25,7 @@ kind: Middleware
|
|||||||
metadata:
|
metadata:
|
||||||
name: strip-auth-prefix
|
name: strip-auth-prefix
|
||||||
spec:
|
spec:
|
||||||
stripPrefix:
|
replacePathRegex:
|
||||||
prefixes:
|
regex: ^/auth(.*)
|
||||||
- "/auth"
|
replacement: /oc$1
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -8,7 +8,7 @@ metadata:
|
|||||||
spec:
|
spec:
|
||||||
ports:
|
ports:
|
||||||
- name: http
|
- name: http
|
||||||
port: 8094
|
port: 8080
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
targetPort: 8080
|
targetPort: 8080
|
||||||
selector:
|
selector:
|
||||||
|
@ -26,7 +26,7 @@ kind: Middleware
|
|||||||
metadata:
|
metadata:
|
||||||
name: strip-catalog-prefix
|
name: strip-catalog-prefix
|
||||||
spec:
|
spec:
|
||||||
stripPrefix:
|
replacePathRegex:
|
||||||
prefixes:
|
regex: ^/catalog(.*)
|
||||||
- "/catalog"
|
replacement: /oc$1
|
||||||
{{- end }}
|
{{- end }}
|
@ -16,7 +16,9 @@ spec:
|
|||||||
port: 8080
|
port: 8080
|
||||||
middlewares:
|
middlewares:
|
||||||
- name: strip-datacenter-prefix
|
- name: strip-datacenter-prefix
|
||||||
- name: forward-auth
|
{{- if index .Values.ocAuth.enableTraefikProxyIntegration }}
|
||||||
|
- name: forward-auth
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
---
|
---
|
||||||
apiVersion: traefik.io/v1alpha1
|
apiVersion: traefik.io/v1alpha1
|
||||||
@ -24,7 +26,7 @@ kind: Middleware
|
|||||||
metadata:
|
metadata:
|
||||||
name: strip-datacenter-prefix
|
name: strip-datacenter-prefix
|
||||||
spec:
|
spec:
|
||||||
stripPrefix:
|
replacePathRegex:
|
||||||
prefixes:
|
regex: ^/datacenter(.*)
|
||||||
- "/datacenter"
|
replacement: /oc$1
|
||||||
{{- end }}
|
{{- end }}
|
@ -1,39 +0,0 @@
|
|||||||
{{- if index .Values.ocDiscovery.enabled }}
|
|
||||||
apiVersion: apps/v1
|
|
||||||
kind: Deployment
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
app: oc-discovery
|
|
||||||
name: {{ .Release.Name }}-oc-discovery
|
|
||||||
spec:
|
|
||||||
replicas: 1
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
app: oc-discovery
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
app: oc-discovery
|
|
||||||
spec:
|
|
||||||
{{- if or (eq .Values.env "prod") (eq .Values.env "staging") }}
|
|
||||||
imagePullSecrets:
|
|
||||||
- name: regcred
|
|
||||||
{{- end }}
|
|
||||||
containers:
|
|
||||||
- image: "{{ .Values.ocDiscovery.image }}"
|
|
||||||
name: oc-discovery
|
|
||||||
envFrom:
|
|
||||||
- configMapRef:
|
|
||||||
name: opencloud-config
|
|
||||||
ports:
|
|
||||||
- name: http
|
|
||||||
containerPort: 8080
|
|
||||||
protocol: TCP
|
|
||||||
resources:
|
|
||||||
limits:
|
|
||||||
cpu: "{{ .Values.ocDiscovery.resources.limits.cpu }}"
|
|
||||||
memory: "{{ .Values.ocDiscovery.resources.limits.memory }}"
|
|
||||||
requests:
|
|
||||||
cpu: "{{ .Values.ocDiscovery.resources.requests.cpu }}"
|
|
||||||
memory: "{{ .Values.ocDiscovery.resources.requests.memory }}"
|
|
||||||
{{- end }}
|
|
@ -1,29 +0,0 @@
|
|||||||
{{- if index .Values.ocDiscovery.enabled }}
|
|
||||||
apiVersion: traefik.io/v1alpha1
|
|
||||||
kind: IngressRoute
|
|
||||||
metadata:
|
|
||||||
name: oc-discovery-ingress
|
|
||||||
spec:
|
|
||||||
entryPoints:
|
|
||||||
- web
|
|
||||||
routes:
|
|
||||||
- kind: Rule
|
|
||||||
match: Host(`{{ .Values.host }}`) && PathPrefix(`/discovery`)
|
|
||||||
priority: 10
|
|
||||||
services:
|
|
||||||
- kind: Service
|
|
||||||
name: oc-discovery-svc
|
|
||||||
port: 8080
|
|
||||||
middlewares:
|
|
||||||
- name: strip-discovery-prefix
|
|
||||||
|
|
||||||
---
|
|
||||||
apiVersion: traefik.io/v1alpha1
|
|
||||||
kind: Middleware
|
|
||||||
metadata:
|
|
||||||
name: strip-discovery-prefix
|
|
||||||
spec:
|
|
||||||
stripPrefix:
|
|
||||||
prefixes:
|
|
||||||
- "/discovery"
|
|
||||||
{{- end }}
|
|
@ -1,17 +0,0 @@
|
|||||||
{{- if index .Values.ocDiscovery.enabled }}
|
|
||||||
apiVersion: v1
|
|
||||||
kind: Service
|
|
||||||
metadata:
|
|
||||||
name: oc-discovery-svc
|
|
||||||
labels:
|
|
||||||
app: oc-discovery-svc
|
|
||||||
spec:
|
|
||||||
ports:
|
|
||||||
- name: http
|
|
||||||
port: 8080
|
|
||||||
protocol: TCP
|
|
||||||
targetPort: 8080
|
|
||||||
selector:
|
|
||||||
app: oc-discovery
|
|
||||||
type: ClusterIP
|
|
||||||
{{- end }}
|
|
@ -6,15 +6,14 @@ metadata:
|
|||||||
data:
|
data:
|
||||||
config.json: |
|
config.json: |
|
||||||
{
|
{
|
||||||
"WORKSPACE_HOST": "{{ .Values.scheme }}://{{ .Values.host }}/workspace/oc",
|
"WORKSPACE_HOST": "{{ .Values.scheme }}://{{ .Values.host }}/workspace",
|
||||||
"WORKFLOW_HOST": "{{ .Values.scheme }}://{{ .Values.host }}/workflow/oc",
|
"WORKFLOW_HOST": "{{ .Values.scheme }}://{{ .Values.host }}/workflow",
|
||||||
"ITEM_HOST": "{{ .Values.scheme }}://{{ .Values.host }}/catalog/oc",
|
"CATALOG_HOST": "{{ .Values.scheme }}://{{ .Values.host }}/catalog",
|
||||||
"SCHEDULER_HOST": "{{ .Values.scheme }}://{{ .Values.host }}/scheduler/oc",
|
"SCHEDULER_HOST": "{{ .Values.scheme }}://{{ .Values.host }}/scheduler",
|
||||||
"LOGS_HOST": "{{ .Values.scheme }}://{{ .Values.host }}/logs",
|
"PEER_HOST": "{{ .Values.scheme }}://{{ .Values.host }}/peers",
|
||||||
"PEER_HOST": "{{ .Values.scheme }}://{{ .Values.host }}/peers/oc",
|
"DATACENTER_HOST": "{{ .Values.scheme }}://{{ .Values.host }}/datacenter",
|
||||||
"DATACENTER_HOST": "{{ .Values.scheme }}://{{ .Values.host }}/datacenter/oc",
|
"COLLABORATIVE_AREA_HOST": "{{ .Values.scheme }}://{{ .Values.host }}/shared",
|
||||||
"COLLABORATIVE_AREA_HOST": "{{ .Values.scheme }}://{{ .Values.host }}/shared/oc",
|
"HOST": "{{ .Values.scheme }}://{{ .Values.host }}",
|
||||||
"HOST": "{{ .Values.scheme }}://{{ .Values.host }}/oc",
|
"AUTH_HOST": "{{ .Values.scheme }}://{{ .Values.host }}/auth"
|
||||||
"AUTH_HOST": "{{ .Values.scheme }}://{{ .Values.host }}/auth/oc"
|
|
||||||
}
|
}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -8,7 +8,7 @@ spec:
|
|||||||
- web
|
- web
|
||||||
routes:
|
routes:
|
||||||
- kind: Rule
|
- kind: Rule
|
||||||
match: Host(`{{ .Values.host }}`) && PathPrefix(`/peers`)
|
match: Host(`{{ .Values.host }}`) && PathPrefix(`/peer`)
|
||||||
priority: 10
|
priority: 10
|
||||||
services:
|
services:
|
||||||
- kind: Service
|
- kind: Service
|
||||||
@ -27,7 +27,7 @@ kind: Middleware
|
|||||||
metadata:
|
metadata:
|
||||||
name: strip-peer-prefix
|
name: strip-peer-prefix
|
||||||
spec:
|
spec:
|
||||||
stripPrefix:
|
replacePathRegex:
|
||||||
prefixes:
|
regex: ^/peer(.*)
|
||||||
- "/peers"
|
replacement: /oc$1
|
||||||
{{- end }}
|
{{- end }}
|
@ -27,7 +27,7 @@ kind: Middleware
|
|||||||
metadata:
|
metadata:
|
||||||
name: strip-scheduler-prefix
|
name: strip-scheduler-prefix
|
||||||
spec:
|
spec:
|
||||||
stripPrefix:
|
replacePathRegex:
|
||||||
prefixes:
|
regex: ^/scheduler(.*)
|
||||||
- "/scheduler"
|
replacement: /oc$1
|
||||||
{{- end }}
|
{{- end }}
|
@ -26,7 +26,7 @@ kind: Middleware
|
|||||||
metadata:
|
metadata:
|
||||||
name: strip-shared-prefix
|
name: strip-shared-prefix
|
||||||
spec:
|
spec:
|
||||||
stripPrefix:
|
replacePathRegex:
|
||||||
prefixes:
|
regex: ^/shared(.*)
|
||||||
- "/shared"
|
replacement: /oc$1
|
||||||
{{- end }}
|
{{- end }}
|
@ -27,7 +27,7 @@ kind: Middleware
|
|||||||
metadata:
|
metadata:
|
||||||
name: strip-workflow-prefix
|
name: strip-workflow-prefix
|
||||||
spec:
|
spec:
|
||||||
stripPrefix:
|
replacePathRegex:
|
||||||
prefixes:
|
regex: ^/workflow(.*)
|
||||||
- "/workflow"
|
replacement: /oc$1
|
||||||
{{- end }}
|
{{- end }}
|
@ -26,7 +26,7 @@ kind: Middleware
|
|||||||
metadata:
|
metadata:
|
||||||
name: strip-workspace-prefix
|
name: strip-workspace-prefix
|
||||||
spec:
|
spec:
|
||||||
stripPrefix:
|
replacePathRegex:
|
||||||
prefixes:
|
regex: ^/workspace(.*)
|
||||||
- "/workspace"
|
replacement: /oc$1
|
||||||
{{- end }}
|
{{- end }}
|
@ -4,5 +4,5 @@ metadata:
|
|||||||
name: forward-auth
|
name: forward-auth
|
||||||
spec:
|
spec:
|
||||||
forwardAuth:
|
forwardAuth:
|
||||||
address: "http://oc-auth-svc.{{ .Release.Namespace }}:8094/oc/forward"
|
address: "http://oc-auth-svc.{{ .Release.Namespace }}:8080/oc/forward"
|
||||||
trustForwardHeader: true
|
trustForwardHeader: true
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
RELEASE_NAME=dev
|
RELEASE_NAME=${1:-dev}
|
||||||
RELEASE_NAMESPACE=dev
|
RELEASE_NAMESPACE=${1:-dev}
|
||||||
|
|
||||||
helm uninstall ${RELEASE_NAME} -n ${RELEASE_NAMESPACE}
|
helm uninstall ${RELEASE_NAME} -n ${RELEASE_NAMESPACE}
|
5
upgrade.sh
Normal file
5
upgrade.sh
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
RELEASE_NAME=${1:-dev}
|
||||||
|
RELEASE_NAMESPACE=${1:-dev}
|
||||||
|
|
||||||
|
helm upgrade ${RELEASE_NAME} opencloud -n ${RELEASE_NAMESPACE} --create-namespace -f opencloud/${RELEASE_NAME}-values.yaml
|
@ -1,5 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
RELEASE_NAME=dev
|
|
||||||
RELEASE_NAMESPACE=dev
|
|
||||||
|
|
||||||
helm upgrade ${RELEASE_NAME} opencloud -n ${RELEASE_NAMESPACE} --create-namespace -f opencloud/dev-values.yaml
|
|
@ -1,5 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
RELEASE_NAME=dev
|
|
||||||
RELEASE_NAMESPACE=dev
|
|
||||||
|
|
||||||
helm upgrade ${RELEASE_NAME} opencloud -n ${RELEASE_NAMESPACE} --create-namespace -f opencloud/dev-values.yaml --dry-run --debug
|
|
@ -1,5 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
RELEASE_NAME=prod
|
|
||||||
RELEASE_NAMESPACE=prod
|
|
||||||
|
|
||||||
helm upgrade ${RELEASE_NAME} opencloud -n ${RELEASE_NAMESPACE} -f opencloud/prod-values.yaml
|
|
Loading…
Reference in New Issue
Block a user