Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
controller
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TFS
controller
Merge requests
!133
Integration of TE component
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Integration of TE component
feat/te-service
into
develop
Overview
0
Commits
65
Pipelines
0
Changes
49
Merged
Lluis Gifre Renom
requested to merge
feat/te-service
into
develop
1 year ago
Overview
0
Commits
65
Pipelines
0
Changes
49
Expand
Integration of TE component, documentation, and test cases
Edited
1 year ago
by
Lluis Gifre Renom
0
0
Merge request reports
Compare
develop
version 23
95ff26e6
1 year ago
version 22
dc76bee3
1 year ago
version 21
394c29be
1 year ago
version 20
1b5ba6ae
1 year ago
version 19
64370dc1
1 year ago
version 18
f80ef527
1 year ago
version 17
2d933ddf
1 year ago
version 16
db81efc6
1 year ago
version 15
39504ce4
1 year ago
version 14
6f8e1c1a
1 year ago
version 13
ececb384
1 year ago
version 12
28b6adc4
1 year ago
version 11
f65b106e
1 year ago
version 10
6e26b790
1 year ago
version 9
058f45cd
1 year ago
version 8
57b173ee
1 year ago
version 7
c1633407
1 year ago
version 6
743362a1
1 year ago
version 5
2a7eb545
1 year ago
version 4
9ae02c23
1 year ago
version 3
3bb700f6
1 year ago
version 2
f6e975da
1 year ago
version 1
9283fcb0
1 year ago
develop (base)
and
latest version
latest version
e679c52e
65 commits,
1 year ago
version 23
95ff26e6
64 commits,
1 year ago
version 22
dc76bee3
63 commits,
1 year ago
version 21
394c29be
62 commits,
1 year ago
version 20
1b5ba6ae
61 commits,
1 year ago
version 19
64370dc1
60 commits,
1 year ago
version 18
f80ef527
59 commits,
1 year ago
version 17
2d933ddf
58 commits,
1 year ago
version 16
db81efc6
57 commits,
1 year ago
version 15
39504ce4
56 commits,
1 year ago
version 14
6f8e1c1a
55 commits,
1 year ago
version 13
ececb384
54 commits,
1 year ago
version 12
28b6adc4
53 commits,
1 year ago
version 11
f65b106e
52 commits,
1 year ago
version 10
6e26b790
26 commits,
1 year ago
version 9
058f45cd
26 commits,
1 year ago
version 8
57b173ee
25 commits,
1 year ago
version 7
c1633407
24 commits,
1 year ago
version 6
743362a1
23 commits,
1 year ago
version 5
2a7eb545
22 commits,
1 year ago
version 4
9ae02c23
20 commits,
1 year ago
version 3
3bb700f6
19 commits,
1 year ago
version 2
f6e975da
18 commits,
1 year ago
version 1
9283fcb0
17 commits,
1 year ago
49 files
+
4129
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
49
Search (e.g. *.vue) (Ctrl+P)
manifests/teservice.yaml
0 → 100644
+
81
−
0
Options
# Copyright 2022-2023 ETSI TeraFlowSDN - TFS OSG (https://tfs.etsi.org/)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
apiVersion
:
apps/v1
kind
:
Deployment
metadata
:
name
:
teservice
spec
:
selector
:
matchLabels
:
app
:
teservice
template
:
metadata
:
annotations
:
config.linkerd.io/skip-inbound-ports
:
"
4189"
labels
:
app
:
teservice
spec
:
terminationGracePeriodSeconds
:
5
shareProcessNamespace
:
true
containers
:
-
name
:
server
image
:
labs.etsi.org:5050/tfs/controller/te:latest
imagePullPolicy
:
Always
ports
:
-
containerPort
:
10030
env
:
-
name
:
ERLANG_LOGGER_LEVEL
value
:
"
debug"
-
name
:
ERLANG_COOKIE
value
:
"
tfte-unsafe-cookie"
-
name
:
ERLANG_NODE_NAME
valueFrom
:
fieldRef
:
fieldPath
:
metadata.name
-
name
:
ERLANG_NODE_IP
valueFrom
:
fieldRef
:
fieldPath
:
status.podIP
readinessProbe
:
exec
:
command
:
[
"
/tfte/bin/tfte"
,
"
status"
]
livenessProbe
:
exec
:
command
:
[
"
/tfte/bin/tfte"
,
"
status"
]
resources
:
requests
:
cpu
:
250m
memory
:
512Mi
limits
:
cpu
:
700m
memory
:
1024Mi
---
apiVersion
:
v1
kind
:
Service
metadata
:
name
:
teservice
spec
:
type
:
ClusterIP
selector
:
app
:
teservice
ports
:
-
name
:
grpc
protocol
:
TCP
port
:
10030
targetPort
:
10030
-
name
:
pcep
protocol
:
TCP
port
:
4189
targetPort
:
4189
Loading