Skip to content

Commit f08959a

Browse files
committed
Updates to try a different approach
1 parent 4f17cf7 commit f08959a

42 files changed

Lines changed: 5290 additions & 7 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ share/python-wheels/
2626
.installed.cfg
2727
*.egg
2828
MANIFEST
29+
newenv
2930

3031
# PyInstaller
3132
# Usually these files are written by a python script from a template

agents/.DS_Store

0 Bytes
Binary file not shown.

config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
llamastack:
22
base_url: "http://lss-chai.apps.cluster-7nc6z.7nc6z.sandbox2170.opentlc.com"
3-
default_model: "granite32-8b"
3+
default_model: "meta-llama/Llama-3.1-8B-Instruct"
44

55
file_storage:
66
upload_dir: "./uploads"

test_bladelogic.json

Lines changed: 0 additions & 6 deletions
This file was deleted.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
http_port: 80
3+
apache_listen_ip: 0.0.0.0
4+
firewall_allowed_ports:
5+
- 80
6+
- 443
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
http_port: 8080
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[webservers]
2+
node1 ansible_host=192.168.56.10
3+
node2 ansible_host=192.168.56.11
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
- name: Deploy Apache Web Servers
3+
hosts: webservers
4+
become: yes
5+
vars_files:
6+
- group_vars/webservers.yml
7+
roles:
8+
- apache
9+
- firewall

uploads/ansible-upgrade/ansible2.9/engine/requirements.yml

Whitespace-only changes.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
http_port: 80
3+
apache_listen_ip: 127.0.0.1

0 commit comments

Comments
 (0)