Agregando git y ultimas configuraciones a el repo.
This commit is contained in:
@ -1,10 +1,27 @@
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: git-install-script
|
||||
namespace: vscode-tunnel
|
||||
data:
|
||||
01-git.sh: |
|
||||
#!/bin/bash
|
||||
# Installing git
|
||||
sudo apt update
|
||||
sudo apt install -y git
|
||||
if command -v git >/dev/null 2>&1; then
|
||||
git config --global user.name "Alejandro Lembke Barrientos"
|
||||
git config --global user.email "aleleba@hotmail.com"
|
||||
fi
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: nvm-install-script
|
||||
namespace: vscode-tunnel
|
||||
data:
|
||||
01-nvm.sh: |
|
||||
02-nvm.sh: |
|
||||
#!/bin/bash
|
||||
# Installing Node.js with NVM
|
||||
sudo curl -O https://raw.githubusercontent.com/creationix/nvm/master/install.sh
|
||||
|
Reference in New Issue
Block a user