One SSH address for all STACKIT Git instances
Section titled “One SSH address for all STACKIT Git instances”On October 27, 2026, from 20:00 to 23:00 (UTC), SSH access to STACKIT Git moves to one shared address. The name of your instance becomes the first element of the repository path. This reduces the publicly exposed surface of your instance and lets us improve the reliability of Git operations over SSH in one place.
- Previous address:
git@ssh.<instance>.git.onstackit.cloud:<owner>/<repository>.git - Address after the maintenance:
ssh://git@ssh.git.onstackit.cloud/<instance>/<owner>/<repository>.git
How you are affected
Section titled “How you are affected”During the maintenance every Git instance is restarted once and is unavailable for about one minute. The restarts are staggered, so not all instances are affected at the same time. Access over HTTPS, your repositories, your users, your registered SSH keys and your IP allowlists do not change.
The previous address keeps working until April 27, 2027. Your existing clones and your automation continue to work after the maintenance, so you can move them at your own pace. We remind you before we switch the previous address off.
What to prepare before October 27, 2026
Section titled “What to prepare before October 27, 2026”- Allow outbound traffic to
213.17.16.145on port22, if your network restricts outbound connections. - Add the host key of
ssh.git.onstackit.cloud, if your systems verify host keys. Its fingerprint isSHA256:I4jgl6ALgx5qOWwpQVC2M613dV7R0Wy6LfQQ5LQKwR4(ED25519). - Make sure the SSH key your client offers to
ssh.git.onstackit.cloudis registered in your instance. - Identify every place that holds the address: local clones, build pipelines, deployment automation, infrastructure as code module sources and repository mirrors.
What to do after the maintenance
Section titled “What to do after the maintenance”Update the remote address of each repository:
git remote set-url origin "$(git remote get-url origin | sed -E 's#^(ssh://)?git@ssh\.([^.]+)\.git\.onstackit\.cloud[:/]#ssh://git@ssh.git.onstackit.cloud/\2/#')"If you have any questions, our Help Center is always at your disposal.