-
Notifications
You must be signed in to change notification settings - Fork 3
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
Example Drupal definition results in failure due to undefined 'git' variable #4
Comments
I'm wondering if the version of the operator on Docker Hub is out of sync with |
Yeah, looks like the playbook version in initContainers:
- name: checkout
image: alpine/git
command:
- git
- clone
- --branch
- '{{ git.branch }}'
- --single-branch
- --depth
- '1'
- '{{ git.repo }}'
- /app/drupal
volumeMounts:
- name: drupal-code
mountPath: /app/drupal/
- name: composer
image: composer
command:
- composer
- install
- --working-dir=/app/drupal
- --no-dev
- --ignore-platform-reqs
env:
- name: COMPOSER_CACHE_DIR
value: /composer/cache
volumeMounts:
- name: drupal-code
mountPath: /app/drupal/
- name: cache-volume
mountPath: /composer/cache/ It looks like there's a |
When I install this operator in my local cluster using the updated directions in #3, the Drupal instance
example-drupal
never gets created; instead, the operator keeps trying to build the instance and outputs the following playbook error:The text was updated successfully, but these errors were encountered: