Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eclipsefdn-downloads-api
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
Model registry
Monitor
Incidents
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Foundation
IT
APIs
eclipsefdn-downloads-api
Merge requests
!2
Add initial k8s files
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add initial k8s files
malowe/eclipsefdn-downloads-api:malowe/main/3
into
main
Overview
0
Commits
1
Changes
2
Merged
Martin Lowe
requested to merge
malowe/eclipsefdn-downloads-api:malowe/main/3
into
main
3 years ago
Overview
0
Commits
1
Changes
2
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
207f1a11
1 commit,
3 years ago
2 files
+
182
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
src/main/k8s/production.yml
0 → 100644
+
91
−
0
Options
apiVersion
:
apps/v1
kind
:
Deployment
metadata
:
name
:
eclipsefdn-downloads-api
namespace
:
foundation-internal-webdev-apps
labels
:
app
:
eclipsefdn-downloads-api
environment
:
production
spec
:
selector
:
matchLabels
:
app
:
eclipsefdn-downloads-api
environment
:
production
replicas
:
2
template
:
metadata
:
labels
:
app
:
eclipsefdn-downloads-api
environment
:
production
spec
:
affinity
:
nodeAffinity
:
preferredDuringSchedulingIgnoredDuringExecution
:
-
preference
:
matchExpressions
:
-
key
:
speed
operator
:
NotIn
values
:
-
fast
weight
:
1
containers
:
-
name
:
api
image
:
eclipsefdn/eclipsefdn-downloads-api:latest
imagePullPolicy
:
Always
ports
:
-
containerPort
:
8090
resources
:
limits
:
cpu
:
'
1'
memory
:
256Mi
requests
:
cpu
:
200m
memory
:
256Mi
env
:
-
name
:
CONFIG_SECRET_PATH
value
:
"
/run/secrets/downloads-api/secret.properties"
volumeMounts
:
-
name
:
secret-properties
mountPath
:
"
/run/secrets/downloads-api"
readOnly
:
true
volumes
:
-
name
:
secret-properties
secret
:
secretName
:
downloads-api
---
apiVersion
:
"
v1"
kind
:
"
Service"
metadata
:
name
:
eclipsefdn-downloads-api
namespace
:
foundation-internal-webdev-apps
spec
:
ports
:
-
name
:
"
http"
port
:
80
protocol
:
"
TCP"
targetPort
:
8090
selector
:
app
:
eclipsefdn-downloads-api
environment
:
production
---
apiVersion
:
"
route.openshift.io/v1"
kind
:
"
Route"
metadata
:
name
:
eclipsefdn-downloads-api
namespace
:
foundation-internal-webdev-apps
annotations
:
haproxy.router.openshift.io/timeout
:
20s
haproxy.router.openshift.io/disable_cookies
:
"
true"
haproxy.router.openshift.io/balance
:
roundrobin
spec
:
host
:
"
api.eclipse.org"
path
:
"
/downloads"
port
:
targetPort
:
"
http"
tls
:
insecureEdgeTerminationPolicy
:
"
Redirect"
termination
:
"
edge"
to
:
kind
:
"
Service"
name
:
eclipsefdn-downloads-api
weight
:
100
Loading