Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hpc-factory
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Krish Moodbidri
hpc-factory
Merge requests
!2
feat(ssh_host_keys): add role for managing SSH host keys
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
feat(ssh_host_keys): add role for managing SSH host keys
rc/hpc-factory-feat-login-build-and-deploy
into
feat-hpc-factory
Overview
0
Commits
77
Pipelines
0
Changes
17
Merged
Krish Moodbidri
requested to merge
rc/hpc-factory-feat-login-build-and-deploy
into
feat-hpc-factory
5 months ago
Overview
0
Commits
77
Pipelines
0
Changes
17
Expand
Ensure the
/tmp/ssh_keys
directory exists.
Download SSH host keys from S3 and unpack them to
/etc/ssh
.
Restart the SSH service to apply the new keys.
Add necessary variables for S3 and AWS credentials in
groupvars/all
.
Include
ssh_host_keys
role in
cluster.yml
playbook.
👍
0
👎
0
Merge request reports
Compare
feat-hpc-factory
feat-hpc-factory (base)
and
latest version
latest version
fb99e4ee
77 commits,
5 months ago
17 files
+
674
−
83
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
17
Search (e.g. *.vue) (Ctrl+P)
ansible/group_vars/all
+
31
−
2
Options
@@ -28,8 +28,37 @@
ldap_uri: "ldap://ldapserver"
# nfs_mounts related
enable_nfs_mounts: true
use_autofs: false
mount_points:
-
/gpfs4
-
/gpfs5
-
{ "src": "master:/gpfs4", "path": "/gpfs4", "opts": "ro,sync,hard", "mode": "0755" }
-
{ "src": "master:/gpfs5", "path": "/gpfs5", "opts": "ro,sync,hard", "mode": "0755" }
#SSH Host Keys
S3_ENDPOINT: ""
SSH_HOST_KEYS_S3_BUCKET: ""
SSH_HOST_KEYS_S3_OBJECT: ""
# AWS credentials
LTS_ACCESS_KEY: ""
LTS_SECRET_KEY: ""
# ssh proxy
enable_ssh_proxy_config: false
sshpiper_dest_dir: "/opt/sshpiper"
fail2ban_cidr_list: "127.0.0.1/8"
# rsyslog
enable_rsyslog_config: false
rsyslog_target: "*.* @master:514"
# ssl certs
enable_ssl_certs: false
ssl_cert_s3_bucket: ""
ssl_cert_key_location: "/etc/pki/tls/private"
ssl_cert_file_location: "/etc/pki/tls/certs"
ssl_cert_key: ""
ssl_cert_file: ""
ssl_cert_chain_file: ""
ssl_apache_config: ""
apache_service: "httpd"
Loading