After I upgrade helm docker-registry to 2.7.1 and I met an error below. ConnectionError: HTTPSConnectionPool(host='registry.xxxxxxx.com', port=443): Max retries exceeded with url: /v2/ (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x109aa90d0>: Failed to establish a new connection: [Errno 8] nodename nor servname provided,…
You might create several <none> docker images during building a docker container. So cleaning up would be good for your local development environment because they might take your local storage. There are two ways that you can clean up. docker…
I have been struggled to distribute our beta software via fastlane. It used to say that I put an incorrect username or password. But I already assigned the environment variable like below. env["FASTLANE_USER"] = "xxxxxxx@xxxxx.com" env["FASTLANE_PASSWORD"] = "xxxxxxxxx" The error…
If you are a developer you might have used git to manage your source repository. Then you might use .gitignore file to exclude files or folders that you don’t want to sync with your remote repository. .gitignore If you specifies…
Today I have faced an issue that I couldn’t push/pull to(from) Bitbucket repository. I used Sourcetree and I got failed to do it with the error below. Invalid username and password I tried to change my password in Bitbucket and…
I have used Godaddy for a long time. By the way I have got a critical issue when I update name servers of a domain. Today I tried to update the name servers of a domain to Godaddy’s default name…
Recently I tried to migrate WordPress website into Kubernetes environment using Docker. After I did set them all I got an error that redirects a new domain to an old domain. So I checked all the sources and database records.…
I was struggled to pull a docker image from a private registry in Kubernetes environment. But everything seems okay. I added a secret to Kubernetes and then the secret information works well in my local. But when I tried to…
The issue was from Docker configuration. In Ubuntu 18.04 Docker configuration is located in Then I need to update to enable Docker daemon connection from Jenkins. ExecStart=/usr/bin/docker daemon -H fd:// I updated the configuration above to a new configuration…
An app that I developed uses OneSignal to send a push notification. OneSignal’s way that they provide a push notification service is using a notification extension in iOS. In this case we have a situation on iOS CI/CD process. Before…