- 16 Mar, 2021 1 commit
-
-
Martin Souchal authored
-
- 25 Sep, 2020 1 commit
-
-
DQ authored
internal tls config upgrade is not included in template, this pr is to add it. Signed-off-by:
DQ <dengq@vmware.com>
-
- 24 Sep, 2020 1 commit
-
-
Wenkai Yin(尹文开) authored
There is requirement that show the cron type(daily, weekly, etc.) on the UI, this commit adds the support for storing the cron type in the schedule model Signed-off-by:
Wenkai Yin <yinw@vmware.com>
-
- 08 Sep, 2020 1 commit
-
-
DQ authored
Signed-off-by:
DQ <dengq@vmware.com>
-
- 27 Aug, 2020 2 commits
-
-
Daniel Jiang authored
Signed-off-by:
Daniel Jiang <jiangd@vmware.com>
-
wang yan authored
fixes #12889 Before the migration script to fix the nativate repo_id issue, is has to remove the duplicate tags from the tag table, which may caused by user in v2.0.2 to retag & repush the missing image. Signed-off-by:
wang yan <wangyan@vmware.com>
-
- 26 Aug, 2020 3 commits
-
-
Daniel Jiang authored
Signed-off-by:
Daniel Jiang <jiangd@vmware.com>
-
wang yan authored
fixes #12827 After user migrates Harbor from v2.0.2, user got 404 when to pull specific images, and no work after push the same images again. Fix: 1, If the issue is caused by missing repository data, this fix can revert the missing repository data and all things should be fine. 2, If the issue is caused by missing blob data, this fix can revert the missing repository data and still left the media type of artifact as 'UNKNOWN', which leads the meta data and build history of the image cannot be shown in UI. User can delete and push the image again to resolve it. Signed-off-by:
wang yan <wangyan@vmware.com>
-
Ziming Zhang authored
Signed-off-by:
Ziming Zhang <zziming@vmware.com>
-
- 25 Aug, 2020 1 commit
-
-
Stefan Nica authored
The harbor-db pod takes a long time to terminate. Using an `exec` command in the entrypoint ensures that Unix signals reach the postgres process [1]. [1] https://docs.docker.com/engine/reference/builder/#exec-form-entrypoint-example Signed-off-by:
Stefan Nica <snica@suse.com>
-
- 24 Aug, 2020 1 commit
-
-
Wang Yan authored
fixes #12849 1, gives a default value to blob status in the migration script, and use none to replace the empty string as the StatusNone, that will more readable on debugging failure. 2, GC jobs marks all of blobs as StatusDelete in the mark phase, but if encounter any failure in the sweep phase, GC job will quite and all of blobs are in StatusDelete. If user wants to execute the GC again, it will fail as the StatusDelete cannot be marked as StatusDelete. So, add StatusDelete in the status map to make StatusDelete can be marked as StatusDelete. Signed-off-by:
wang yan <wangyan@vmware.com>
-
- 20 Aug, 2020 3 commits
-
-
Ted Guan authored
Signed-off-by:
guanxiatao <guanxiatao@corp.netease.com>
-
Wenkai Yin authored
Add id column to data_migration table and add logic to make sure there is only one data version record Signed-off-by:
Wenkai Yin <yinw@vmware.com>
-
Dirk Mueller authored
We should use a golang that isn't having security issues. This includes: * go1.14.6 (released 2020/07/16) includes fixes to the go command, the compiler, the linker, vet, and the database/sql, encoding/json, net/http, reflect, and testing packages. See the Go 1.14.6 milestone on our issue tracker for details. * go1.14.7 (released 2020/08/06) includes security fixes to the encoding/binary package. See the Go 1.14.7 milestone on our issue tracker for details (CVE-2020-16845) Signed-off-by:
Dirk Mueller <dirk@dmllr.de> Signed-off-by:
Dirk Mueller <dmueller@suse.com>
-
- 19 Aug, 2020 1 commit
-
-
DQ authored
it should be https Signed-off-by:
DQ <dengq@vmware.com>
-
- 17 Aug, 2020 1 commit
-
-
Wenkai Yin authored
Refresh the status of execution for every status changing of task to support filtering executions by status directly Signed-off-by:
Wenkai Yin <yinw@vmware.com>
-
- 15 Aug, 2020 1 commit
-
-
Wenkai Yin authored
Implement the icon API to get the icon of artifact Signed-off-by:
Wenkai Yin <yinw@vmware.com>
-
- 14 Aug, 2020 1 commit
-
-
Wenkai Yin authored
Use a separated database table to store the data version. Fixes #12747 Signed-off-by:
Wenkai Yin <yinw@vmware.com>
-
- 13 Aug, 2020 2 commits
-
-
Qian Deng authored
Mount `/` dir in container require privilege And this change will make `z` label useless. So remove them Signed-off-by:
DQ <dengq@vmware.com>
-
DQ authored
To void trivy can not start issue Signed-off-by:
DQ <dengq@vmware.com>
-
- 11 Aug, 2020 1 commit
-
-
DQ authored
Signed-off-by:
DQ <dengq@vmware.com>
-
- 10 Aug, 2020 3 commits
-
-
Yiyang Huang authored
Signed-off-by:
Yiyang Huang <huangyiyang.huangyy@bytedance.com>
-
He Weiwei authored
The latest `photon:2.0` does not include `groupadd` and `useradd` we need to install `shadow` package which includes these commands. Signed-off-by:
He Weiwei <hweiwei@vmware.com>
-
Daniel Pacak authored
Resolves: #11985 Signed-off-by:
Daniel Pacak <pacak.daniel@gmail.com>
-
- 08 Aug, 2020 1 commit
-
-
chlins authored
fix(replication): refactor quay adapter to fix authorization and support quay.io and enterprise quay (#10317) Signed-off-by:
chlins <chlins.zhang@gmail.com>
-
- 06 Aug, 2020 2 commits
-
-
Tianon Gravi authored
Notably missing is the "log" image, which still uses sudo. Signed-off-by:
Tianon Gravi <tianon@infosiftr.com>
-
Daniel Jiang authored
Fixes #11885 This part will not by default be packaged into release. A README.md will be added in another commit. Signed-off-by:
Daniel Jiang <jiangd@vmware.com>
-
- 05 Aug, 2020 2 commits
-
-
Wenkai Yin authored
1. Accept vendorType and vendorID when creating the schedule 2. Provide more methods in the scheduler interface to reduce the duplicated works of callers 3. Use a new ormer and transaction when creating the schedule Signed-off-by:
Wenkai Yin <yinw@vmware.com>
-
DQ authored
The export is dynamical now because of introduce of internal TLS Signed-off-by:
DQ <dengq@vmware.com>
-
- 03 Aug, 2020 1 commit
-
-
DQ authored
db_max_open_comms should be 1000 if its value between 100 and 1000 Signed-off-by:
DQ <dengq@vmware.com>
-
- 31 Jul, 2020 1 commit
-
-
DQ authored
add related file, config, command to enabled https for portal Signed-off-by:
DQ <dengq@vmware.com>
-
- 27 Jul, 2020 1 commit
-
-
DQ authored
the port should be flexible depend on the internal tls Signed-off-by:
DQ <dengq@vmware.com>
-
- 20 Jul, 2020 2 commits
-
-
chlins authored
Signed-off-by:
chlins <chlins.zhang@gmail.com>
-
Wenkai Yin authored
Refactor the scheduler with the task manager mechanism, this will reduce the duplicate code Signed-off-by:
Wenkai Yin <yinw@vmware.com>
-
- 19 Jul, 2020 1 commit
-
-
Ziming Zhang authored
Signed-off-by:
Ziming Zhang <zziming@vmware.com>
-
- 16 Jul, 2020 1 commit
-
-
Wang Yan authored
Signed-off-by:
wang yan <wangyan@vmware.com>
-
- 14 Jul, 2020 1 commit
-
-
He Weiwei authored
Signed-off-by:
He Weiwei <hweiwei@vmware.com>
-
- 10 Jul, 2020 1 commit
-
-
chlins authored
manager adds parsePolicy Signed-off-by:
chlins <chlins.zhang@gmail.com>
-
- 09 Jul, 2020 2 commits
-
-
He Weiwei authored
To fetch vulnerability database updated time of the Clair had moved to the Clair adapter so removes the initialization of clair db in the core. Signed-off-by:
He Weiwei <hweiwei@vmware.com>
-
Wenkai Yin authored
Rename "reuse_sys_cve_whitelist" to "reuse_sys_cve_allowlist" in project metadata Signed-off-by:
Wenkai Yin <yinw@vmware.com>
-