We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77abb5e commit 01a829fCopy full SHA for 01a829f
terraform/ovh/main.tf
@@ -174,6 +174,11 @@ provider "harbor" {
174
# chart images go in mybinder-chart
175
resource "harbor_project" "mybinder-chart" {
176
name = "mybinder-chart"
177
+ # chart images need to be public
178
+ # because we can't have two pull secrets for one registry,
179
+ # and harbor < 2.2 can't grant read-only access to more than one project
180
+ # on the same registry
181
+ public = true
182
}
183
184
# user builds go in mybinder-builds
0 commit comments