Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
- liberty-jdk17-rockylinux8
- liberty-jdk21-rockylinux8
- weblogic-rockylinux8
- weblogic-rockylinux9
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name: spm_middleware

# The version of the collection. Must be compatible with semantic versioning
# Please note. version also exists in /github/workflows/release.yml and will need to be update also
version: 1.8.6
version: 1.8.7

# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md
Expand Down
34 changes: 34 additions & 0 deletions molecule/weblogic-rockylinux9/molecule.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
driver:
name: docker
provider:
name: docker

lint: |
set -e
yamllint .

platforms:
- name: rockylinux9
image: rockylinux:9
dockerfile: ../_resources/Dockerfile.j2
pre_build_image: False
privileged: True
# volume_mounts:
# - "/sys/fs/cgroup:/sys/fs/cgroup:rw"
command: "/usr/sbin/init"
environment:
container: docker

provisioner:
name: ansible
log: true
config_options:
defaults:
stderr_callback: debug
stdout_callback: debug
env:
ANSIBLE_FORCE_COLOR: 'true'
playbooks:
converge: ../__weblogic-v14.1/converge.yml
verify: ../__weblogic-v14.1/verify.yml
1 change: 1 addition & 0 deletions roles/weblogic/meta/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ galaxy_info:
versions:
- 7
- 8
- 9

galaxy_tags:
[]
Expand Down
36 changes: 36 additions & 0 deletions roles/weblogic/vars/os_9.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
packages_list:
- 'binutils'
- 'net-tools'
- 'psmisc'
- 'shadow-utils'
- 'gcc-c++'
- 'glibc.x86_64'
- 'glibc-devel.x86_64'
- 'libaio-devel'
- 'libstdc++-devel'
- 'ksh'
- 'make'
- 'sudo'
- 'unzip'
- 'sysstat'
- 'yum-utils'
- 'smartmontools'
kernel_params:
kernel.shmmax: "{{ (ansible_memtotal_mb * 1048576 / 2) |round|int|abs }}"
kernel.shmall: "{{ (ansible_memtotal_mb * 1048576 / 4096) |round|int|abs }}"
# net.core.rmem_max: 16777216
# net.core.wmem_max: 16777216
net.ipv4.tcp_rmem: 4096 87380 16777216
net.ipv4.tcp_wmem: 4096 65536 16777216
vm.swappiness: 10
vm.dirty_background_ratio: 5
vm.dirty_ratio: 10
fs.file-max: 262144
net.ipv4.tcp_keepalive_time: 300
net.ipv4.tcp_keepalive_intvl: 60
net.ipv4.tcp_keepalive_probes: 10
soft_no_file: 4096
hard_no_file: 65536
soft_nproc: 2047
hard_nproc: 16384