Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
harbor
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
market
harbor
Commits
051b2d65
Commit
051b2d65
authored
Nov 14, 2018
by
舒成
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
97c2609f
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
21 deletions
+24
-21
readme.md
readme.md
+3
-3
templates/database/statefulset.yaml
templates/database/statefulset.yaml
+4
-1
values.yaml
values.yaml
+17
-17
No files found.
readme.md
View file @
051b2d65
...
...
@@ -76,12 +76,12 @@ database:
image
:
repository
:
registry.cn-qingdao.aliyuncs.com/wod/harbor-db
tag
:
v1.6.0
password
:
"
spaceIN511
"
password
:
"
passwd
"
volumes
:
data
:
storageClass
:
"
storageos"
accessMode
:
ReadWriteOnce
size
:
1
Gi
size
:
5
Gi
registry
:
image
:
...
...
@@ -187,7 +187,7 @@ database:
image
:
repository
:
registry.cn-qingdao.aliyuncs.com/wod/harbor-db
tag
:
v1.6.0
password
:
"
spaceIN511
"
password
:
"
passwd
"
nodeSelector
:
harbor-database
:
enabled
...
...
templates/database/statefulset.yaml
View file @
051b2d65
...
...
@@ -24,7 +24,10 @@ spec:
initContainers
:
-
name
:
"
remove-lost-found"
image
:
"
{{
.Values.busybox.image.repository
}}:{{
.Values.busybox.image.tag
}}"
command
:
[
"
rm"
,
"
-Rf"
,
"
/var/lib/postgresql/data/lost+found"
]
command
:
-
/bin/sh
-
"
-c"
-
"
rm
-Rf
/var/lib/postgresql/data/lost+found"
volumeMounts
:
-
name
:
data
mountPath
:
/var/lib/postgresql/data
...
...
values.yaml
View file @
051b2d65
...
...
@@ -2,11 +2,11 @@ persistence:
enabled
:
true
externalProtocol
:
https
# The FQDN for Harbor service
externalDomain
:
h
arbor.wodcloud.com
externalDomain
:
h
ub.wodcloud.local
# The Port for Harbor service, leave empty if the service
# is to be bound to port 80/443
externalPort
:
harborAdminPassword
:
"
58772015
"
harborAdminPassword
:
"
passwd
"
authenticationMode
:
"
db_auth"
selfRegistration
:
"
on"
ldap
:
...
...
@@ -51,7 +51,7 @@ harborImageTag: &harbor_image_tag dev
adminserver
:
image
:
repository
:
registry
-vpc
.cn-qingdao.aliyuncs.com/wod/harbor-adminserver
repository
:
registry.cn-qingdao.aliyuncs.com/wod/harbor-adminserver
tag
:
*harbor_image_tag
pullPolicy
:
IfNotPresent
volumes
:
...
...
@@ -69,7 +69,7 @@ adminserver:
jobservice
:
image
:
repository
:
registry
-vpc
.cn-qingdao.aliyuncs.com/wod/harbor-jobservice
repository
:
registry.cn-qingdao.aliyuncs.com/wod/harbor-jobservice
tag
:
*harbor_image_tag
pullPolicy
:
IfNotPresent
secret
:
"
BBRQwySksiHZqJUh"
...
...
@@ -84,7 +84,7 @@ jobservice:
ui
:
image
:
repository
:
registry
-vpc
.cn-qingdao.aliyuncs.com/wod/harbor-ui
repository
:
registry.cn-qingdao.aliyuncs.com/wod/harbor-ui
tag
:
*harbor_image_tag
pullPolicy
:
IfNotPresent
secret
:
"
BBRQwySksiHZqJUh"
...
...
@@ -98,7 +98,7 @@ ui:
busybox
:
image
:
repository
:
registry
-vpc
.cn-qingdao.aliyuncs.com/wod/busybox
repository
:
registry.cn-qingdao.aliyuncs.com/wod/busybox
tag
:
1.29
# TODO: change the style to be same with redis
...
...
@@ -108,16 +108,16 @@ database:
type
:
internal
internal
:
image
:
repository
:
registry
-vpc
.cn-qingdao.aliyuncs.com/wod/harbor-db
repository
:
registry.cn-qingdao.aliyuncs.com/wod/harbor-db
tag
:
*harbor_image_tag
pullPolicy
:
IfNotPresent
# the superuser password of database
password
:
"
spaceIN511
"
password
:
"
passwd
"
volumes
:
data
:
storageClass
:
"
storageos"
accessMode
:
ReadWriteOnce
size
:
1
Gi
size
:
5
Gi
# resources:
# requests:
# memory: 256Mi
...
...
@@ -137,7 +137,7 @@ database:
registry
:
image
:
repository
:
registry
-vpc
.cn-qingdao.aliyuncs.com/wod/registry-photon
repository
:
registry.cn-qingdao.aliyuncs.com/wod/registry-photon
tag
:
dev
pullPolicy
:
IfNotPresent
httpSecret
:
"
BBRQwySksiHZqJUh"
...
...
@@ -223,7 +223,7 @@ registry:
chartmuseum
:
enabled
:
true
image
:
repository
:
registry
-vpc
.cn-qingdao.aliyuncs.com/wod/chartmuseum-photon
repository
:
registry.cn-qingdao.aliyuncs.com/wod/chartmuseum-photon
tag
:
dev
pullPolicy
:
IfNotPresent
volumes
:
...
...
@@ -242,7 +242,7 @@ chartmuseum:
clair
:
enabled
:
true
image
:
repository
:
registry
-vpc
.cn-qingdao.aliyuncs.com/wod/clair-photon
repository
:
registry.cn-qingdao.aliyuncs.com/wod/clair-photon
tag
:
dev
pullPolicy
:
IfNotPresent
volumes
:
...
...
@@ -260,14 +260,14 @@ clair:
redis
:
image
:
repository
:
registry
-vpc
.cn-qingdao.aliyuncs.com/wod/redis
repository
:
registry.cn-qingdao.aliyuncs.com/wod/redis
tag
:
4.0.1-alpine
pullPolicy
:
IfNotPresent
# if external Redis is used, set "external.enabled" to "true"
# and fill the connection informations in "external" section.
# or the internal Redis will be used
usePassword
:
false
password
:
"
spaceIN511
"
password
:
"
passwd
"
cluster
:
enabled
:
false
master
:
...
...
@@ -281,18 +281,18 @@ redis:
port
:
"
6379"
databaseIndex
:
"
0"
usePassword
:
false
password
:
"
spaceIN511
"
password
:
"
passwd
"
notary
:
enabled
:
true
server
:
image
:
repository
:
registry
-vpc
.cn-qingdao.aliyuncs.com/wod/notary-server-photon
repository
:
registry.cn-qingdao.aliyuncs.com/wod/notary-server-photon
tag
:
dev
pullPolicy
:
IfNotPresent
signer
:
image
:
repository
:
registry
-vpc
.cn-qingdao.aliyuncs.com/wod/notary-signer-photon
repository
:
registry.cn-qingdao.aliyuncs.com/wod/notary-signer-photon
tag
:
dev
pullPolicy
:
IfNotPresent
env
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment