-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: Ansible directory path inside repo #2766
base: develop
Are you sure you want to change the base?
Feature: Ansible directory path inside repo #2766
Conversation
I think the CI needs a cache clear. An earlier mistake in my DB migration script tainted the cache with the new column with incorrect constraints. The CI is trying to migrate an already-migrated DB. Edit: Maybe not? I think I've just misunderstood how the migration system works. It's OK now. |
@@ -31,6 +31,7 @@ type Repository struct { | |||
SSHKeyID int `db:"ssh_key_id" json:"ssh_key_id" binding:"required" backup:"-"` | |||
|
|||
SSHKey AccessKey `db:"-" json:"-" backup:"-"` | |||
Path string `db:"path" json:"path" backup:"-"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
backup:"-"
- must be backup:"path"
.
Currently Perhaps it is documentation issue? Perhaps |
Implements #2733. Allows for a repo to be configured with an optional relative path from the Git root to the location inside the repo that stores the playbooks, role directory and configuration.
I'm aware of some blocking tasks:
4. Handle DB migration.