-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/12.2.0-4alvistack9'
- Loading branch information
Showing
15 changed files
with
145 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# (c) Wong Hoi Sing Edison <hswong3i@pantarei-design.com> | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
FROM ubuntu:18.04 | ||
|
||
ENV LANG "en_US.utf8" | ||
ENV LC_ALL "en_US.utf8" | ||
ENV SHELL "/bin/bash" | ||
ENV TZ "UTC" | ||
|
||
# Hotfix for systemd | ||
RUN set -ex \ | ||
&& apt-get update \ | ||
&& DEBIAN_FRONTEND=noninteractive apt-get install -y systemd \ | ||
&& ln -fs /lib/systemd/systemd /usr/sbin/init \ | ||
&& find /lib/systemd/system/sysinit.target.wants/ -name "systemd-tmpfiles-setup.service" -delete \ | ||
&& rm -f /lib/systemd/system/multi-user.target.wants/* \ | ||
&& rm -f /etc/systemd/system/*.wants/* \ | ||
&& rm -f /lib/systemd/system/local-fs.target.wants/* \ | ||
&& rm -f /lib/systemd/system/sockets.target.wants/*udev* \ | ||
&& rm -f /lib/systemd/system/sockets.target.wants/*initctl* \ | ||
&& rm -f /lib/systemd/system/basic.target.wants/* \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# Hotfix for en_US.utf8 locale | ||
RUN set -ex \ | ||
&& apt-get update \ | ||
&& DEBIAN_FRONTEND=noninteractive apt-get install -y locales \ | ||
&& localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8 \ | ||
&& rm -rf /var/lib/apt/lists/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../../inventory/default/group_vars/all/00-defaults.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
|
||
# (c) Wong Hoi Sing Edison <hswong3i@pantarei-design.com> | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
--- | ||
|
||
# (c) Wong Hoi Sing Edison <hswong3i@pantarei-design.com> | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
driver: | ||
name: docker | ||
platforms: | ||
- name: ${MOLECULE_INSTANCE_NAME}-1 | ||
dockerfile: Dockerfile.j2 | ||
privileged: true | ||
volumes: | ||
- "/sys/fs/cgroup:/sys/fs/cgroup:rw" | ||
entrypoint: init | ||
command: "bash -c 'sleep infinity'" | ||
tty: true | ||
env: | ||
container: docker | ||
lint: | | ||
set -ex | ||
yamllint . | ||
ansible-lint | ||
flake8 | ||
dependency: | ||
name: galaxy | ||
options: | ||
role-file: ansible-role-requirements.yml | ||
roles-path: ${ANSIBLE_ROLES_PATH} | ||
ignore-errors: true | ||
provisioner: | ||
name: ansible | ||
env: | ||
ANSIBLE_ROLES_PATH: ${ANSIBLE_ROLES_PATH} | ||
config_options: | ||
defaults: | ||
forks: 20 | ||
ssh_connection: | ||
pipelining: true | ||
ssh_args: -o ControlMaster=auto -o ControlPersist=600s | ||
inventory: | ||
links: | ||
group_vars: group_vars | ||
verifier: | ||
name: ansible |
Submodule bootstrap
updated
2 files
+1 −1 | molecule/default/molecule.yml | |
+1 −1 | molecule/ubuntu-20.04/molecule.yml |
Submodule gosu
updated
2 files
+1 −1 | molecule/default/molecule.yml | |
+1 −1 | molecule/ubuntu-20.04/molecule.yml |
Submodule locales
updated
2 files
+1 −1 | molecule/default/molecule.yml | |
+1 −1 | molecule/ubuntu-20.04/molecule.yml |
Submodule postgres
updated
2 files
+1 −1 | molecule/default/molecule.yml | |
+1 −1 | molecule/ubuntu-20.04/molecule.yml |
Submodule python
updated
2 files
+1 −1 | molecule/default/molecule.yml | |
+1 −1 | molecule/ubuntu-20.04/molecule.yml |
Submodule timezone
updated
2 files
+1 −1 | molecule/default/molecule.yml | |
+1 −1 | molecule/ubuntu-20.04/molecule.yml |
Submodule tini
updated
from 09383d to 49103e