Use gitea.repository variable for dynamic image repository paths
- Updated values.yaml to use gitea.repository placeholder - Modified build.yml workflow to replace repository path dynamically - Modified helm-release.yml workflow to replace repository path - This allows the Helm chart to work with any Gitea repository structure - Image paths are now built as: registry/gitea.repository/component
This commit is contained in:
@@ -15,7 +15,7 @@ web:
|
||||
|
||||
image:
|
||||
registry: gitea.server_url # Will be replaced with actual Gitea URL
|
||||
repository: demos/api7-demo/web
|
||||
repository: gitea.repository/web # Will be replaced with actual repository path
|
||||
pullPolicy: IfNotPresent
|
||||
tag: "main" # Override with specific version
|
||||
|
||||
@@ -69,7 +69,7 @@ api:
|
||||
|
||||
image:
|
||||
registry: gitea.server_url # Will be replaced with actual Gitea URL
|
||||
repository: demos/api7-demo/api
|
||||
repository: gitea.repository/api # Will be replaced with actual repository path
|
||||
pullPolicy: IfNotPresent
|
||||
tag: "main" # Override with specific version
|
||||
|
||||
|
||||
Reference in New Issue
Block a user