Skip to content
Snippets Groups Projects
Unverified Commit 15a780fe authored by Max Adamo's avatar Max Adamo
Browse files

change team names

parent 16b53915
No related branches found
No related tags found
No related merge requests found
Pipeline #61654 passed
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
1. [usage](#usage) 1. [usage](#usage)
1. [compatibility](#compatibility) 1. [compatibility](#compatibility)
1. [build](#build) 1. [build](#build)
1. [create a new release](#create-a-new-release)
1. [links](#links) 1. [links](#links)
Fetches and stores a given Certificate, Full Chain, CA and Private Key. Fetches and stores a given Certificate, Full Chain, CA and Private Key.
...@@ -67,6 +68,29 @@ Please run the script in this repository to check all available options: ...@@ -67,6 +68,29 @@ Please run the script in this repository to check all available options:
./build.sh --help ./build.sh --help
``` ```
## create a new release
You can add this code snippet inside `~/.gitconfig`:
```conf
[alias]
pp = !git pull && git push
pushall = !git remote | xargs -L1 git push --all
pushall-tags = !git remote | xargs -L1 git push --tags
```
You can apply the change onto `master` branch.
If you want to create version 1.2.3, the commands below will trigger the CI and upload the files to Artifactory:
```bash
git checkout master # make your changes ...
git commit "my new change"
git push
git tag v1.2.3
git pushall-tags
```
## links ## links
The binaries and the shell script can be downloaded on [Geant Artifactory](https://artifactory.software.geant.org/artifactory/acme-downloader) The binaries and the shell script can be downloaded on [Geant Artifactory](https://artifactory.software.geant.org/artifactory/acme-downloader)
...@@ -86,7 +86,7 @@ usage() { ...@@ -86,7 +86,7 @@ usage() {
echo " --redis-token (Redis access token)" echo " --redis-token (Redis access token)"
echo " --vault-token (Vault access token)" echo " --vault-token (Vault access token)"
echo " --cert-name (Certificate name)" echo " --cert-name (Certificate name)"
echo " --team-name (Team name: swd, dream_team, it, ne, ti, nmaas...)" echo " --team-name (Team name: swd, it, neteng, nmaas ...)"
echo " --days [OPTIONAL check days before expiration. Default: 30)" echo " --days [OPTIONAL check days before expiration. Default: 30)"
echo " --type [OPTIONAL. OV or EV. Default: EV]" echo " --type [OPTIONAL. OV or EV. Default: EV]"
echo " --cert-destination [OPTIONAL Default: ${CERT_BASE}/<cert-name>.crt]" echo " --cert-destination [OPTIONAL Default: ${CERT_BASE}/<cert-name>.crt]"
......
...@@ -414,7 +414,7 @@ Options: ...@@ -414,7 +414,7 @@ Options:
--redis-token=REDISTOKEN Redis access token --redis-token=REDISTOKEN Redis access token
--vault-token=VAULTTOKEN Vault access token --vault-token=VAULTTOKEN Vault access token
--cert-name=CERTNAME Certificate name --cert-name=CERTNAME Certificate name
--team-name=TEAMNAME Team name: swd, it, ne, ti... --team-name=TEAMNAME Team name: swd, it, neteng, nmaas ...
--days=DAYS Days before expiration [default: 30] --days=DAYS Days before expiration [default: 30]
--type=TYPE Type, EV or OV [default: EV] --type=TYPE Type, EV or OV [default: EV]
--cert-destination=CERTDESTINATION Cert Destination [default: %v/<cert-name>.crt] --cert-destination=CERTDESTINATION Cert Destination [default: %v/<cert-name>.crt]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment