Skip to content

Commit 20f0d7d

Browse files
aledeganoolevski
authored andcommitted
fix: Harbor-Init should create the project as public.
We assume that pulling is allowed by everyone.
1 parent 42bf268 commit 20f0d7d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/harbor-init/harbor-init.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ func main() {
163163
logger.Println("The project does not exist yet, creating: ", projectName)
164164
project := map[string]interface{}{
165165
"project_name": projectName,
166-
"public": false,
166+
"public": true, // For Renkulab we assume that the project is public and can be read by anyone
167167
}
168168
projectData, err := json.Marshal(project)
169169
if err != nil {

0 commit comments

Comments
 (0)