Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clone the sdcore-adapter chart into an sdcore-adapter-v3 chart #555

Merged
merged 6 commits into from
Jun 16, 2021
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"lng": 13.3885
},
"onos.topo.Configurable": {
"address": "sdcore-adapter-new:5150",
"address": "sdcore-adapter-v3:5150",
"version": "3.0.0",
"type": "Aether"
},
Expand Down
5 changes: 5 additions & 0 deletions aether-roc-umbrella/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,11 @@ sdcore-adapter:
fullnameOverride: sdcore-adapter
prometheusEnabled: false

sdcore-adapter-v3:
scottmbaker marked this conversation as resolved.
Show resolved Hide resolved
nameOverride: sdcore-adapter-v3
fullnameOverride: sdcore-adapter-v3
prometheusEnabled: false

# SD-Core Test Dummy
# proxy_pass has to be added or nginx will not log the $request_body
sdcore-test-dummy:
Expand Down
4 changes: 2 additions & 2 deletions sdcore-adapter/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ apiVersion: v2
name: sdcore-adapter
kubeVersion: ">=1.17.0"
type: application
version: 0.0.18
appVersion: v0.1.17
version: 3.0.0
appVersion: v0.1.18
description: ONOS SD-Core Adapter
keywords:
- onos
Expand Down
3 changes: 2 additions & 1 deletion sdcore-adapter/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spec:
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- toYaml . | nindent 6 }}
{{- end }}
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
Expand Down Expand Up @@ -51,6 +51,7 @@ spec:
- "-ca=/etc/sdcore-adapter/certs/tls.cacert"
- "-alsologtostderr"
- "-hostCheckDisabled"
- "-model_version={{ .Values.model.version }}"
{{ if .Values.initialConfig }}
- "-config={{ .Values.initialConfig }}"
{{ end }}
Expand Down
5 changes: 4 additions & 1 deletion sdcore-adapter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ annotations: {}

image:
repository: onosproject/sdcore-adapter
tag: v0.1.17
tag: v0.1.18
pullPolicy: IfNotPresent
pullSecrets: []

Expand All @@ -22,6 +22,9 @@ resources:
service:
type: ClusterIP

model:
version: v3

secure: true
initialConfig: ""
output: ""
Expand Down