-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from graphistry/v0.3.5
V0.3.5
- Loading branch information
Showing
132 changed files
with
6,280 additions
and
1,942 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Generate chart Docs | ||
#description: | ||
# Triggers: | ||
# - manual run | ||
# - push to PR with label 'ci' and that job successfully running (and pushing to dockerhub) | ||
# Results: | ||
# - push VERSION as tag to graphistry/graph-app-kit if not already there | ||
# - if VERSION tag already in gak repo, instead trigger gak repo dockerhubpublish | ||
|
||
on: | ||
workflow_call: | ||
workflow_dispatch: | ||
workflow_run: | ||
workflows: [Release Charts] | ||
types: | ||
- completed | ||
|
||
jobs: | ||
|
||
cancel_outstanding: | ||
name: Detect and cancel outstanding runs of this workflow | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
steps: | ||
- name: Cancel Previous Runs | ||
if: ${{ (github.event.label.name == 'Release Charts' && !contains(github.event.pull_request.labels.*.name, 'skip-cancel')) }} | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
docs-gen: | ||
name: generate docs | ||
#description: Public GPU env (VERSION_ENV -> VERSION) | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 90 | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,12 @@ jobs: | |
git config user.name "$GITHUB_ACTOR" | ||
git config user.email "[email protected]" | ||
## docker compose build | ||
- name: get aux charts for release | ||
run: bash chart-bundler/bundler.sh | ||
|
||
- name: Run chart-releaser | ||
uses: helm/[email protected] | ||
env: | ||
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
CR_RELEASE_NOTES_FILE: "CHANGELOG.md" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
# .readthedocs.yml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
# Required | ||
version: 2 | ||
|
||
# Build documentation in the docs/ directory with Sphinx | ||
sphinx: | ||
configuration: docs/source/conf.py | ||
|
||
# Optionally build your docs in additional formats such as PDF | ||
formats: | ||
- htmlzip | ||
- epub | ||
|
||
# Build configuration | ||
python: | ||
install: | ||
- requirements: docs/requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
apiVersion: v2 | ||
name: graphistry-ci | ||
version: 1.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
apiVersion: argoproj.io/v1alpha1 | ||
kind: Application | ||
metadata: | ||
name: argo-cd | ||
namespace: argo-cd | ||
finalizers: | ||
- resources-finalizer.argocd.argoproj.io | ||
labels: | ||
name: argo | ||
spec: | ||
destination: | ||
server: https://kubernetes.default.svc | ||
namespace: argo-cd | ||
project: default | ||
source: | ||
path: charts/argo-cd | ||
repoURL: https://github.com/graphistry/argo-helm.git | ||
targetRevision: HEAD #BRANCH OR HEAD WHEN IN MAIN | ||
helm: | ||
valueFiles: | ||
- ./argo-values.yaml # resolved against source.repoURL and source.path | ||
syncPolicy: | ||
automated: | ||
prune: true | ||
selfHeal: true | ||
syncOptions: | ||
- CreateNamespace=true | ||
|
||
##helm template charts/argo-cd/apps/ | kubectl apply -f - | ||
|
||
#helm upgrade -i argo ./charts/argo-cd --namespace argo --create-namespace |
30 changes: 30 additions & 0 deletions
30
cd/argo-apps/templates/graphistry-cd-templates/graphistry-cd.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
apiVersion: argoproj.io/v1alpha1 | ||
kind: Application | ||
metadata: | ||
name: graphistry-app-cd | ||
namespace: argo-cd | ||
finalizers: | ||
- resources-finalizer.argocd.argoproj.io | ||
labels: | ||
name: graphistry | ||
spec: | ||
destination: | ||
server: https://kubernetes.default.svc | ||
namespace: graphistry | ||
project: default | ||
source: | ||
path: charts/graphistry-helm | ||
repoURL: https://github.com/graphistry/graphistry-helm.git | ||
targetRevision: nightly #BRANCH OR HEAD WHEN IN MAIN | ||
helm: | ||
valueFiles: | ||
- ../values-overrides/internal/eks-dev-values.yaml # resolved against source.repoURL and source.path | ||
syncPolicy: | ||
automated: | ||
prune: true | ||
selfHeal: true | ||
syncOptions: | ||
- CreateNamespace=true | ||
|
||
|
||
##helm template cd/argo-apps/ | kubectl apply -f - |
29 changes: 29 additions & 0 deletions
29
cd/argo-apps/templates/graphistry-cd-templates/graphistry-resource-cd.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
apiVersion: argoproj.io/v1alpha1 | ||
kind: Application | ||
metadata: | ||
name: graphistry-resources-cd | ||
namespace: argo-cd | ||
finalizers: | ||
- resources-finalizer.argocd.argoproj.io | ||
labels: | ||
name: graphistry | ||
spec: | ||
destination: | ||
server: https://kubernetes.default.svc | ||
namespace: graphistry | ||
project: default | ||
source: | ||
path: charts/graphistry-helm-resources | ||
repoURL: https://github.com/graphistry/graphistry-helm.git | ||
targetRevision: nightly #BRANCH OR HEAD WHEN IN MAIN | ||
helm: | ||
valueFiles: | ||
- ../values-overrides/internal/eks-dev-values.yaml # resolved against source.repoURL and source.path | ||
syncPolicy: | ||
automated: | ||
prune: true | ||
selfHeal: true | ||
syncOptions: | ||
- CreateNamespace=true | ||
|
||
##helm template charts/argo-cd/apps/ | kubectl apply -f - |
Oops, something went wrong.