-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Use podman #16
Closed
Closed
Use podman #16
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
58765de
wip
jack-avery 0a2046e
Merge branch 'main' into dev
jack-avery 8d80a0c
attempt 1: podman over docker
jack-avery ea2dfe0
finishing touches
jack-avery 1423914
declare volume plays correctly
jack-avery 1302ed4
fix
jack-avery bbae5ef
fix: kube naming
jack-avery 3160446
fix: kube indentation
jack-avery bc3a1f7
fix: satisfy kube port spec
jack-avery 4955e04
fix: rename to containerfile
jack-avery bdb4d2d
fix: podman image build play
jack-avery dbbffb3
fix: further satisfy image play
jack-avery e970114
fix: using docker registry
jack-avery 1985f4a
fix naming
jack-avery 6ddcb91
fix: this play prefers singular?
jack-avery 7e82f38
fix: srcds image build play
jack-avery 9209cc8
fix: network name
jack-avery 3e6f6d3
fix: kube yaml
jack-avery 1bdd426
fix wording
jack-avery 2df5b68
fmt: manifest.py
jack-avery 345ca00
fix: relay bot
jack-avery 0d596ec
update readme
jack-avery ca27387
fix: does not stay open
jack-avery File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
- name: Build (or update) base server image on host | ||
- name: Build base server image on host | ||
hosts: tf2 | ||
roles: | ||
- base-tf2server |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
- name: Deploy Discord relay | ||
- name: Build Discord relay | ||
hosts: metrics | ||
roles: | ||
- relay |
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
2 changes: 1 addition & 1 deletion
2
roles/base-tf2server/files/Dockerfile → roles/base-tf2server/files/Containerfile
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 was deleted.
Oops, something went wrong.
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,45 @@ | ||
apiVersion: v1 | ||
kind: Pod | ||
metadata: | ||
name: ansible-tf2network_{{ network_shortname }} | ||
spec: | ||
containers: | ||
{% for item in targets.instances %} | ||
- name: "srcds-{{ network_shortname }}-{{ item.name }}" | ||
image: "srcds-{{ network_shortname }}-{{ item.name }}:latest" | ||
ports: | ||
- containerPort: {{ item.port }} | ||
hostPort: {{ item.port }} | ||
protocol: TCP | ||
- containerPort: {{ item.port }} | ||
hostPort: {{ item.port }} | ||
protocol: UDP | ||
- containerPort: {{ item.port + 5 }} | ||
hostPort: {{ item.port + 5}} | ||
protocol: UDP | ||
args: | ||
- -cpus | ||
- "1" | ||
{% endfor %} | ||
{% if not targets.is_metrics %} | ||
- name: "ssh-{{ network_shortname }}" | ||
image: docker.io/kroniak/ssh-client | ||
restart: always | ||
volumes: | ||
- "/home/tf2server/.ssh/sbpp_key_{{ network_shortname }}:/root/id_rsa" | ||
command: | ||
- ssh | ||
- -4NTCp | ||
- "{{ sbpp_host_ssh_port }}" | ||
- -i | ||
- /root/id_rsa | ||
- -o | ||
- StrictHostKeyChecking=no | ||
- -o | ||
- ServerAliveInterval=60 | ||
- -o | ||
- ExitOnForwardFailure=yes | ||
- -L | ||
- "0.0.0.0:3306:db:3306" | ||
- "sbpp_user@{{ sbpp_host }}" | ||
{% endif %} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
make this use cpuset