Linkdump 27/2024
Gitlab Link to heading
Send testmails Link to heading
gitlab-rails console
# on rails console:
Notify.test_email('you@example.com', 'Message Subject', 'Message Body').deliver_now
Reset you initial root password Link to heading
gitlab-rake "gitlab:password:reset[root]"
Solve Error 500 when (changing application settings) Link to heading
gitlab-psql -d gitlabhq_production
# on PSQL-Shell
DELETE FROM application_settings;
Linux Link to heading
Linux Terminal key combinations
Kubernetes Link to heading
Working with container registries Link to heading
Get all available container images
curl --insecure -s -X GET -u user:pass https://container-registry:5000/v2/_catalog | jq
{
"repositories": [
"alpine-base",
"alpine_base",
"alpine_base_apache",
"alpine_base_tomcat",
"alpine_base_wildfly",
"alpine_dimag_ingestlist",
"alpine_dimag_ipm",
"alpine_dimag_km"
]
}
Get al available tag of a container image
curl -s --insecure -X GET -u user:pass https://container-registry:5000/v2/alpine_base_apache/tags/list | jq
{
"name": "alpine_base_apache",
"tags": [
"latest",
"php82"
]
}