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.
2 parents 6ee8ef8 + 8e40583 commit ede7054Copy full SHA for ede7054
openserverless/impl/builder/build_service.py
@@ -144,14 +144,14 @@ def get_registry_auth(self) -> str:
144
if registry_secret is not None:
145
self.registry_auth = registry_secret['metadata']['name']
146
# is custom only when is not equal to the default
147
- if self.registry_auth != "registry-pull-secret-int":
+ if self.registry_auth != "registry-pull-secret":
148
self.custom_registry_auth = True
149
return self.registry_auth
150
else:
151
logging.error(f"Failed to create registry secret for custom credentials")
152
153
154
- return 'registry-pull-secret-int'
+ return 'registry-pull-secret'
155
156
def create_docker_file(self, requirements=None) -> str:
157
"""
0 commit comments