Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dbgjerez/ta
Personal for technical analysis project
https://github.com/dbgjerez/ta
criptocurrency gitops go golang technical-analysis
Last synced: 3 months ago
JSON representation
Personal for technical analysis project
- Host: GitHub
- URL: https://github.com/dbgjerez/ta
- Owner: dbgjerez
- Created: 2022-04-04T10:56:01.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-09T18:22:55.000Z (almost 2 years ago)
- Last Synced: 2024-10-02T09:17:00.783Z (3 months ago)
- Topics: criptocurrency, gitops, go, golang, technical-analysis
- Language: Go
- Homepage:
- Size: 156 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ArgoCD
## Operator
```zsh
❯ curl -sL https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.20.0/install.sh | bash -s v0.20.0
❯ k create -f https://operatorhub.io/install/argocd-operator.yaml
```## ArgoCD server instance
```zsh
❯ k create ns argocd
❯ k apply -f argocd/server.yaml
```## Bootstrap the cluster
### Create the namespaces
> **NOTE**: I have to add the namespace to the bootstrap.```zsh
❯ k apply -f argocd/ta-prod-namespaces.yaml
```### Create the application
This application references a repositories, app projects and applications.```zsh
❯ k apply -f argocd/ta-app-bootstrap.yaml
```