kustomize edit add support globbing strings
Add directory
kustomize edit add resource <dir>
Add Yaml files
kustomize edit add resource ./*.yaml
Tuesday, May 26, 2020
Monday, May 25, 2020
Tip: remote: error: Your commit has been blocked due to certain binary file(s) being oversized or not allowed.
Symptom:
When we git push a large file into gitlab, we hit this errorremote: error: Your commit has been blocked due to certain binary file(s) being oversized or not allowed.
Solution:
git reset --soft HEAD~1. (2 or 3 depends how far to rollback)git commit -m "your message"
git pull (to merge the changes)
git push
Tip: Add Password Into Existing Private Keys
Add Password:
openssl rsa -aes256 -in your-private-key.pem -out your-private-key-encrypted.pemwriting RSA key
Enter PEM pass phrase: ****
Verifying - Enter PEM pass phrase: ****
Remove Password:
openssl rsa -in your-private-key-encrypted.pem -out your-private-key.pemPrivate key passphrase: ****
Sunday, May 24, 2020
Warning: the ECDSA host key for 'testgitlab.test.com' differs from the key for the IP address 1.1.1.1
To fix it:
ssh-keygen -R 1.1.1.1
Subscribe to:
Comments (Atom)