Compare commits
20 Commits
fix/deskto
...
fix/instal
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e9af73ff1b | ||
|
|
910210139c | ||
|
|
6a4454ef05 | ||
|
|
e7de0c631e | ||
|
|
79372a32af | ||
|
|
693d32bc2e | ||
|
|
d62a6a8fd6 | ||
|
|
29e4b8e51c | ||
|
|
b30c201006 | ||
|
|
34d609068d | ||
|
|
41fcac1374 | ||
|
|
d8a69a146c | ||
|
|
7c134bbb1d | ||
|
|
39dbad4ec9 | ||
|
|
6c1539d65b | ||
|
|
a3038f1edb | ||
|
|
a2c7b16382 | ||
|
|
ac598f66fc | ||
|
|
6a8cb38940 | ||
|
|
1c1e7dfdf4 |
2
.github/workflows/build-redis-231.yaml
vendored
2
.github/workflows/build-redis-231.yaml
vendored
@@ -17,4 +17,4 @@ jobs:
|
|||||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
AWS_DEFAULT_REGION: "us-east-1"
|
AWS_DEFAULT_REGION: "us-east-1"
|
||||||
run: |
|
run: |
|
||||||
bash scripts/build-redis.sh linux/amd64 glibc-231
|
bash build/build-redis.sh linux/amd64 glibc-231
|
||||||
|
|||||||
4
.github/workflows/build-redis.yaml
vendored
4
.github/workflows/build-redis.yaml
vendored
@@ -17,7 +17,7 @@ jobs:
|
|||||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
AWS_DEFAULT_REGION: "us-east-1"
|
AWS_DEFAULT_REGION: "us-east-1"
|
||||||
run: |
|
run: |
|
||||||
bash scripts/build-redis.sh linux/amd64
|
bash build/build-redis.sh linux/amd64
|
||||||
|
|
||||||
push-arm64:
|
push-arm64:
|
||||||
runs-on: [self-hosted, linux, ARM64]
|
runs-on: [self-hosted, linux, ARM64]
|
||||||
@@ -40,4 +40,4 @@ jobs:
|
|||||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
AWS_DEFAULT_REGION: "us-east-1"
|
AWS_DEFAULT_REGION: "us-east-1"
|
||||||
run: |
|
run: |
|
||||||
sudo -E sh -c "bash scripts/build-redis.sh linux/arm64 && rm -rf redis*"
|
sudo -E sh -c "bash build/build-redis.sh linux/arm64 && rm -rf redis*"
|
||||||
|
|||||||
2
.github/workflows/build-ubuntu2204.yaml
vendored
2
.github/workflows/build-ubuntu2204.yaml
vendored
@@ -17,4 +17,4 @@ jobs:
|
|||||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
AWS_DEFAULT_REGION: "us-east-1"
|
AWS_DEFAULT_REGION: "us-east-1"
|
||||||
run: |
|
run: |
|
||||||
bash scripts/build-ubuntu2204.sh
|
bash build/build-ubuntu2204.sh
|
||||||
2
.github/workflows/build-wsl2326.yaml
vendored
2
.github/workflows/build-wsl2326.yaml
vendored
@@ -17,4 +17,4 @@ jobs:
|
|||||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
AWS_DEFAULT_REGION: "us-east-1"
|
AWS_DEFAULT_REGION: "us-east-1"
|
||||||
run: |
|
run: |
|
||||||
bash scripts/build-wsl-install-msi.sh
|
bash build/build-wsl-install-msi.sh
|
||||||
|
|||||||
14
.github/workflows/check.yaml
vendored
14
.github/workflows/check.yaml
vendored
@@ -35,10 +35,10 @@ jobs:
|
|||||||
|
|
||||||
- name: Pre package
|
- name: Pre package
|
||||||
run: |
|
run: |
|
||||||
bash scripts/package.sh
|
bash build/package.sh
|
||||||
|
|
||||||
- name: Run chart-testing (lint)
|
- name: Run chart-testing (lint)
|
||||||
run: ct lint --chart-dirs build/installer/wizard/config,build/installer/wizard/config/apps,build/installer/wizard/config/gpu --check-version-increment=false --all
|
run: ct lint --chart-dirs .dist/wizard/config,.dist/wizard/config/apps,.dist/wizard/config/gpu --check-version-increment=false --all
|
||||||
|
|
||||||
# - name: Create kind cluster
|
# - name: Create kind cluster
|
||||||
# if: steps.list-changed.outputs.changed == 'true'
|
# if: steps.list-changed.outputs.changed == 'true'
|
||||||
@@ -65,7 +65,7 @@ jobs:
|
|||||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
AWS_DEFAULT_REGION: "us-east-1"
|
AWS_DEFAULT_REGION: "us-east-1"
|
||||||
run: |
|
run: |
|
||||||
bash scripts/image-manifest.sh && bash scripts/upload-images.sh .manifest/images.mf
|
bash build/image-manifest.sh && bash build/upload-images.sh .manifest/images.mf
|
||||||
|
|
||||||
push-image-arm64:
|
push-image-arm64:
|
||||||
runs-on: [self-hosted, linux, ARM64]
|
runs-on: [self-hosted, linux, ARM64]
|
||||||
@@ -85,7 +85,7 @@ jobs:
|
|||||||
AWS_DEFAULT_REGION: 'us-east-1'
|
AWS_DEFAULT_REGION: 'us-east-1'
|
||||||
run: |
|
run: |
|
||||||
export PATH=$PATH:/usr/local/bin:/home/ubuntu/.local/bin
|
export PATH=$PATH:/usr/local/bin:/home/ubuntu/.local/bin
|
||||||
bash scripts/image-manifest.sh && bash scripts/upload-images.sh .manifest/images.mf linux/arm64
|
bash build/image-manifest.sh && bash build/upload-images.sh .manifest/images.mf linux/arm64
|
||||||
|
|
||||||
|
|
||||||
push-deps:
|
push-deps:
|
||||||
@@ -105,7 +105,7 @@ jobs:
|
|||||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
AWS_DEFAULT_REGION: "us-east-1"
|
AWS_DEFAULT_REGION: "us-east-1"
|
||||||
run: |
|
run: |
|
||||||
bash scripts/deps-manifest.sh && bash scripts/upload-deps.sh
|
bash build/deps-manifest.sh && bash build/upload-deps.sh
|
||||||
|
|
||||||
push-deps-arm64:
|
push-deps-arm64:
|
||||||
runs-on: [self-hosted, linux, ARM64]
|
runs-on: [self-hosted, linux, ARM64]
|
||||||
@@ -128,7 +128,7 @@ jobs:
|
|||||||
AWS_DEFAULT_REGION: "us-east-1"
|
AWS_DEFAULT_REGION: "us-east-1"
|
||||||
run: |
|
run: |
|
||||||
export PATH=$PATH:/usr/local/bin:/home/ubuntu/.local/bin
|
export PATH=$PATH:/usr/local/bin:/home/ubuntu/.local/bin
|
||||||
bash scripts/deps-manifest.sh linux/arm64 && bash scripts/upload-deps.sh linux/arm64
|
bash build/deps-manifest.sh linux/arm64 && bash build/upload-deps.sh linux/arm64
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -151,7 +151,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Package installer
|
- name: Package installer
|
||||||
run: |
|
run: |
|
||||||
bash scripts/build.sh ${{ steps.vars.outputs.tag_version }}
|
bash build/build.sh ${{ steps.vars.outputs.tag_version }}
|
||||||
|
|
||||||
- name: Upload package
|
- name: Upload package
|
||||||
env:
|
env:
|
||||||
|
|||||||
4
.github/workflows/daily-lint-check.yaml
vendored
4
.github/workflows/daily-lint-check.yaml
vendored
@@ -29,9 +29,9 @@ jobs:
|
|||||||
|
|
||||||
- name: Pre package
|
- name: Pre package
|
||||||
run: |
|
run: |
|
||||||
bash scripts/package.sh
|
bash build/package.sh
|
||||||
|
|
||||||
- name: Run chart-testing (lint)
|
- name: Run chart-testing (lint)
|
||||||
run: |
|
run: |
|
||||||
ct lint --chart-dirs build/installer/wizard/config,build/installer/wizard/config/apps,build/installer/wizard/config/gpu --check-version-increment=false --all
|
ct lint --chart-dirs .dist/wizard/config,.dist/wizard/config/apps,.dist/wizard/config/gpu --check-version-increment=false --all
|
||||||
|
|
||||||
|
|||||||
4
.github/workflows/push-deps-to-s3.yml
vendored
4
.github/workflows/push-deps-to-s3.yml
vendored
@@ -33,7 +33,7 @@ jobs:
|
|||||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
AWS_DEFAULT_REGION: "us-east-1"
|
AWS_DEFAULT_REGION: "us-east-1"
|
||||||
run: |
|
run: |
|
||||||
bash scripts/deps-manifest.sh && bash scripts/upload-deps.sh
|
bash build/deps-manifest.sh && bash build/upload-deps.sh
|
||||||
|
|
||||||
push-arm64:
|
push-arm64:
|
||||||
runs-on: [self-hosted, linux, ARM64]
|
runs-on: [self-hosted, linux, ARM64]
|
||||||
@@ -66,4 +66,4 @@ jobs:
|
|||||||
AWS_DEFAULT_REGION: "us-east-1"
|
AWS_DEFAULT_REGION: "us-east-1"
|
||||||
run: |
|
run: |
|
||||||
export PATH=$PATH:/usr/local/bin:/home/ubuntu/.local/bin
|
export PATH=$PATH:/usr/local/bin:/home/ubuntu/.local/bin
|
||||||
bash scripts/deps-manifest.sh linux/arm64 && bash scripts/upload-deps.sh linux/arm64
|
bash build/deps-manifest.sh linux/arm64 && bash build/upload-deps.sh linux/arm64
|
||||||
|
|||||||
4
.github/workflows/push-to-s3.yaml
vendored
4
.github/workflows/push-to-s3.yaml
vendored
@@ -33,7 +33,7 @@ jobs:
|
|||||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
AWS_DEFAULT_REGION: "us-east-1"
|
AWS_DEFAULT_REGION: "us-east-1"
|
||||||
run: |
|
run: |
|
||||||
bash scripts/image-manifest.sh && bash scripts/upload-images.sh .manifest/images.mf
|
bash build/image-manifest.sh && bash build/upload-images.sh .manifest/images.mf
|
||||||
|
|
||||||
push-arm64:
|
push-arm64:
|
||||||
runs-on: [self-hosted, linux, ARM64]
|
runs-on: [self-hosted, linux, ARM64]
|
||||||
@@ -65,4 +65,4 @@ jobs:
|
|||||||
AWS_DEFAULT_REGION: "us-east-1"
|
AWS_DEFAULT_REGION: "us-east-1"
|
||||||
run: |
|
run: |
|
||||||
export PATH=$PATH:/usr/local/bin:/home/ubuntu/.local/bin
|
export PATH=$PATH:/usr/local/bin:/home/ubuntu/.local/bin
|
||||||
bash scripts/image-manifest.sh && bash scripts/upload-images.sh .manifest/images.mf linux/arm64
|
bash build/image-manifest.sh && bash build/upload-images.sh .manifest/images.mf linux/arm64
|
||||||
|
|||||||
34
.github/workflows/release-daily.yaml
vendored
34
.github/workflows/release-daily.yaml
vendored
@@ -21,7 +21,7 @@ jobs:
|
|||||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
AWS_DEFAULT_REGION: 'us-east-1'
|
AWS_DEFAULT_REGION: 'us-east-1'
|
||||||
run: |
|
run: |
|
||||||
bash scripts/image-manifest.sh && bash scripts/upload-images.sh .manifest/images.mf
|
bash build/image-manifest.sh && bash build/upload-images.sh .manifest/images.mf
|
||||||
|
|
||||||
push-images-arm64:
|
push-images-arm64:
|
||||||
runs-on: [self-hosted, linux, ARM64]
|
runs-on: [self-hosted, linux, ARM64]
|
||||||
@@ -36,7 +36,7 @@ jobs:
|
|||||||
AWS_DEFAULT_REGION: 'us-east-1'
|
AWS_DEFAULT_REGION: 'us-east-1'
|
||||||
run: |
|
run: |
|
||||||
export PATH=$PATH:/usr/local/bin:/home/ubuntu/.local/bin
|
export PATH=$PATH:/usr/local/bin:/home/ubuntu/.local/bin
|
||||||
bash scripts/image-manifest.sh && bash scripts/upload-images.sh .manifest/images.mf linux/arm64
|
bash build/image-manifest.sh && bash build/upload-images.sh .manifest/images.mf linux/arm64
|
||||||
|
|
||||||
push-deps:
|
push-deps:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@@ -51,7 +51,7 @@ jobs:
|
|||||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
AWS_DEFAULT_REGION: "us-east-1"
|
AWS_DEFAULT_REGION: "us-east-1"
|
||||||
run: |
|
run: |
|
||||||
bash scripts/deps-manifest.sh && bash scripts/upload-deps.sh
|
bash build/deps-manifest.sh && bash build/upload-deps.sh
|
||||||
|
|
||||||
push-deps-arm64:
|
push-deps-arm64:
|
||||||
runs-on: [self-hosted, linux, ARM64]
|
runs-on: [self-hosted, linux, ARM64]
|
||||||
@@ -67,7 +67,7 @@ jobs:
|
|||||||
AWS_DEFAULT_REGION: "us-east-1"
|
AWS_DEFAULT_REGION: "us-east-1"
|
||||||
run: |
|
run: |
|
||||||
export PATH=$PATH:/usr/local/bin:/home/ubuntu/.local/bin
|
export PATH=$PATH:/usr/local/bin:/home/ubuntu/.local/bin
|
||||||
bash scripts/deps-manifest.sh linux/arm64 && bash scripts/upload-deps.sh linux/arm64
|
bash build/deps-manifest.sh linux/arm64 && bash build/upload-deps.sh linux/arm64
|
||||||
|
|
||||||
|
|
||||||
upload-package:
|
upload-package:
|
||||||
@@ -86,7 +86,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Package installer
|
- name: Package installer
|
||||||
run: |
|
run: |
|
||||||
bash scripts/build.sh ${{ steps.vars.outputs.tag_version }}
|
bash build/build.sh ${{ steps.vars.outputs.tag_version }}
|
||||||
|
|
||||||
- name: Upload to S3
|
- name: Upload to S3
|
||||||
env:
|
env:
|
||||||
@@ -117,19 +117,19 @@ jobs:
|
|||||||
- name: Update checksum
|
- name: Update checksum
|
||||||
uses: eball/write-tag-to-version-file@latest
|
uses: eball/write-tag-to-version-file@latest
|
||||||
with:
|
with:
|
||||||
filename: 'build/installer/install.sh'
|
filename: 'build/base-package/install.sh'
|
||||||
placeholder: '#__MD5SUM__'
|
placeholder: '#__MD5SUM__'
|
||||||
tag: ${{ steps.vars.outputs.version_md5sum }}
|
tag: ${{ steps.vars.outputs.version_md5sum }}
|
||||||
|
|
||||||
- name: Package installer
|
- name: Package installer
|
||||||
run: |
|
run: |
|
||||||
bash scripts/build.sh ${{ steps.vars.outputs.tag_version }}
|
bash build/build.sh ${{ steps.vars.outputs.tag_version }}
|
||||||
|
|
||||||
- name: 'Archives'
|
- name: 'Archives'
|
||||||
run: |
|
run: |
|
||||||
cp .dist/install-wizard/install.sh build/installer
|
cp .dist/install-wizard/install.sh build/base-package
|
||||||
cp build/installer/install.sh build/installer/publicInstaller.sh
|
cp build/base-package/install.sh build/base-package/publicInstaller.sh
|
||||||
cp .dist/install-wizard/install.ps1 build/installer
|
cp .dist/install-wizard/install.ps1 build/base-package
|
||||||
|
|
||||||
- name: Release public files
|
- name: Release public files
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
@@ -138,13 +138,13 @@ jobs:
|
|||||||
tag_name: ${{ steps.vars.outputs.tag_version }}
|
tag_name: ${{ steps.vars.outputs.tag_version }}
|
||||||
files: |
|
files: |
|
||||||
install-wizard-v${{ steps.vars.outputs.tag_version }}.tar.gz
|
install-wizard-v${{ steps.vars.outputs.tag_version }}.tar.gz
|
||||||
build/installer/publicInstaller.sh
|
build/base-package/publicInstaller.sh
|
||||||
build/installer/install.sh
|
build/base-package/install.sh
|
||||||
build/installer/install.ps1
|
build/base-package/install.ps1
|
||||||
build/installer/joincluster.sh
|
build/base-package/joincluster.sh
|
||||||
build/installer/publicAddnode.sh
|
build/base-package/publicAddnode.sh
|
||||||
build/installer/version.hint
|
build/base-package/version.hint
|
||||||
build/installer/publicRestoreInstaller.sh
|
build/base-package/publicRestoreInstaller.sh
|
||||||
prerelease: true
|
prerelease: true
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|||||||
40
.github/workflows/release.yaml
vendored
40
.github/workflows/release.yaml
vendored
@@ -23,7 +23,7 @@ jobs:
|
|||||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
AWS_DEFAULT_REGION: 'us-east-1'
|
AWS_DEFAULT_REGION: 'us-east-1'
|
||||||
run: |
|
run: |
|
||||||
bash scripts/image-manifest.sh && bash scripts/upload-images.sh .manifest/images.mf
|
bash build/image-manifest.sh && bash build/upload-images.sh .manifest/images.mf
|
||||||
|
|
||||||
push-arm64:
|
push-arm64:
|
||||||
runs-on: [self-hosted, linux, ARM64]
|
runs-on: [self-hosted, linux, ARM64]
|
||||||
@@ -40,7 +40,7 @@ jobs:
|
|||||||
AWS_DEFAULT_REGION: 'us-east-1'
|
AWS_DEFAULT_REGION: 'us-east-1'
|
||||||
run: |
|
run: |
|
||||||
export PATH=$PATH:/usr/local/bin:/home/ubuntu/.local/bin
|
export PATH=$PATH:/usr/local/bin:/home/ubuntu/.local/bin
|
||||||
bash scripts/image-manifest.sh && bash scripts/upload-images.sh .manifest/images.mf linux/arm64
|
bash build/image-manifest.sh && bash build/upload-images.sh .manifest/images.mf linux/arm64
|
||||||
|
|
||||||
upload-package:
|
upload-package:
|
||||||
needs: [push, push-arm64]
|
needs: [push, push-arm64]
|
||||||
@@ -54,7 +54,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Package installer
|
- name: Package installer
|
||||||
run: |
|
run: |
|
||||||
bash scripts/build.sh ${{ github.event.inputs.tags }}
|
bash build/build.sh ${{ github.event.inputs.tags }}
|
||||||
|
|
||||||
- name: Upload to S3
|
- name: Upload to S3
|
||||||
env:
|
env:
|
||||||
@@ -77,7 +77,7 @@ jobs:
|
|||||||
ref: ${{ github.event.inputs.tags }}
|
ref: ${{ github.event.inputs.tags }}
|
||||||
|
|
||||||
- name: Update env
|
- name: Update env
|
||||||
working-directory: ./build/installer
|
working-directory: ./build/base-package
|
||||||
run: |
|
run: |
|
||||||
echo 'DEBUG_VERSION="false"' > .env
|
echo 'DEBUG_VERSION="false"' > .env
|
||||||
|
|
||||||
@@ -89,21 +89,21 @@ jobs:
|
|||||||
- name: Update checksum
|
- name: Update checksum
|
||||||
uses: eball/write-tag-to-version-file@latest
|
uses: eball/write-tag-to-version-file@latest
|
||||||
with:
|
with:
|
||||||
filename: 'build/installer/install.sh'
|
filename: 'build/base-package/install.sh'
|
||||||
placeholder: '#__MD5SUM__'
|
placeholder: '#__MD5SUM__'
|
||||||
tag: ${{ steps.vars.outputs.version_md5sum }}
|
tag: ${{ steps.vars.outputs.version_md5sum }}
|
||||||
|
|
||||||
- name: Package installer
|
- name: Package installer
|
||||||
run: |
|
run: |
|
||||||
bash scripts/build.sh ${{ github.event.inputs.tags }}
|
bash build/build.sh ${{ github.event.inputs.tags }}
|
||||||
|
|
||||||
- name: 'Archives'
|
- name: 'Archives'
|
||||||
run: |
|
run: |
|
||||||
cp .dist/install-wizard/install.sh build/installer
|
cp .dist/install-wizard/install.sh build/base-package
|
||||||
cp build/installer/install.sh build/installer/publicInstaller.sh
|
cp build/base-package/install.sh build/base-package/publicInstaller.sh
|
||||||
cp build/installer/install.sh build/installer/publicInstaller.latest
|
cp build/base-package/install.sh build/base-package/publicInstaller.latest
|
||||||
cp .dist/install-wizard/install.ps1 build/installer
|
cp .dist/install-wizard/install.ps1 build/insbase-packagetaller
|
||||||
cp build/installer/install.ps1 build/installer/publicInstaller.latest.ps1
|
cp build/base-package/install.ps1 build/base-package/publicInstaller.latest.ps1
|
||||||
|
|
||||||
- name: Release public files
|
- name: Release public files
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
@@ -112,15 +112,15 @@ jobs:
|
|||||||
tag_name: ${{ github.event.inputs.tags }}
|
tag_name: ${{ github.event.inputs.tags }}
|
||||||
files: |
|
files: |
|
||||||
install-wizard-v${{ github.event.inputs.tags }}.tar.gz
|
install-wizard-v${{ github.event.inputs.tags }}.tar.gz
|
||||||
build/installer/publicInstaller.sh
|
build/base-package/publicInstaller.sh
|
||||||
build/installer/publicInstaller.latest
|
build/base-package/publicInstaller.latest
|
||||||
build/installer/install.sh
|
build/base-package/install.sh
|
||||||
build/installer/publicInstaller.latest.ps1
|
build/base-package/publicInstaller.latest.ps1
|
||||||
build/installer/install.ps1
|
build/base-package/install.ps1
|
||||||
build/installer/publicAddnode.sh
|
build/base-package/publicAddnode.sh
|
||||||
build/installer/joincluster.sh
|
build/instbase-packagealler/joincluster.sh
|
||||||
build/installer/version.hint
|
build/base-package/version.hint
|
||||||
build/installer/publicRestoreInstaller.sh
|
build/base-package/publicRestoreInstaller.sh
|
||||||
prerelease: true
|
prerelease: true
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -23,6 +23,7 @@ go.work
|
|||||||
|
|
||||||
.dist
|
.dist
|
||||||
.manifest
|
.manifest
|
||||||
|
.dependencies
|
||||||
install-wizard-*.tar.gz
|
install-wizard-*.tar.gz
|
||||||
olares-cli-*.tar.gz
|
olares-cli-*.tar.gz
|
||||||
!ks-console-*.tgz
|
!ks-console-*.tgz
|
||||||
|
|||||||
@@ -303,7 +303,7 @@ spec:
|
|||||||
runAsUser: 0
|
runAsUser: 0
|
||||||
privileged: true
|
privileged: true
|
||||||
- name: nginx
|
- name: nginx
|
||||||
image: 'eball/nginx-header-more:test-3'
|
image: 'beclab/docker-nginx-headers-more:ubuntu-v0.1.0'
|
||||||
securityContext:
|
securityContext:
|
||||||
runAsNonRoot: false
|
runAsNonRoot: false
|
||||||
runAsUser: 0
|
runAsUser: 0
|
||||||
@@ -66,7 +66,7 @@ spec:
|
|||||||
|
|
||||||
containers:
|
containers:
|
||||||
- name: edge-desktop
|
- name: edge-desktop
|
||||||
image: beclab/desktop:v0.2.58
|
image: beclab/desktop:v0.2.59
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
securityContext:
|
securityContext:
|
||||||
runAsNonRoot: false
|
runAsNonRoot: false
|
||||||
@@ -78,7 +78,7 @@ spec:
|
|||||||
value: http://bfl.{{ .Release.Namespace }}:8080
|
value: http://bfl.{{ .Release.Namespace }}:8080
|
||||||
|
|
||||||
- name: desktop-server
|
- name: desktop-server
|
||||||
image: beclab/desktop-server:v0.2.58
|
image: beclab/desktop-server:v0.2.59
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
securityContext:
|
securityContext:
|
||||||
allowPrivilegeEscalation: false
|
allowPrivilegeEscalation: false
|
||||||
@@ -318,7 +318,7 @@ spec:
|
|||||||
# - /filebrowser
|
# - /filebrowser
|
||||||
# - --noauth
|
# - --noauth
|
||||||
- name: files-frontend
|
- name: files-frontend
|
||||||
image: eball/nginx-header-more:test-3
|
image: beclab/docker-nginx-headers-more:ubuntu-v0.1.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
securityContext:
|
securityContext:
|
||||||
runAsNonRoot: false
|
runAsNonRoot: false
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
{{- $namespace := printf "%s%s" "user-system-" .Values.bfl.username -}}
|
{{- $market_secret := (lookup "v1" "Secret" .Release.Namespace "market-secrets") -}}
|
||||||
{{- $market_secret := (lookup "v1" "Secret" $namespace "market-secrets") -}}
|
|
||||||
|
|
||||||
{{- $redis_password := "" -}}
|
{{- $redis_password := "" -}}
|
||||||
{{ if $market_secret -}}
|
{{ if $market_secret -}}
|
||||||
@@ -91,7 +90,7 @@ spec:
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
fieldPath: status.podIP
|
fieldPath: status.podIP
|
||||||
- name: nginx-init
|
- name: nginx-init
|
||||||
image: beclab/market-frontend:v0.3.11
|
image: beclab/market-frontend:v0.3.12
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: app
|
- name: app
|
||||||
@@ -105,7 +104,7 @@ spec:
|
|||||||
cp -rf /app/* /cp_app/. && cp -rf /etc/nginx/conf.d/* /confd/.
|
cp -rf /app/* /cp_app/. && cp -rf /etc/nginx/conf.d/* /confd/.
|
||||||
containers:
|
containers:
|
||||||
- name: appstore
|
- name: appstore
|
||||||
image: eball/nginx-header-more:test-3
|
image: beclab/docker-nginx-headers-more:ubuntu-v0.1.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 80
|
- containerPort: 80
|
||||||
@@ -116,7 +115,7 @@ spec:
|
|||||||
mountPath: /etc/nginx/conf.d
|
mountPath: /etc/nginx/conf.d
|
||||||
|
|
||||||
- name: appstore-backend
|
- name: appstore-backend
|
||||||
image: beclab/market-backend:v0.3.11
|
image: beclab/market-backend:v0.3.12
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 81
|
- containerPort: 81
|
||||||
@@ -256,7 +256,7 @@ spec:
|
|||||||
- mountPath: /www
|
- mountPath: /www
|
||||||
name: www-dir
|
name: www-dir
|
||||||
- name: settings-init
|
- name: settings-init
|
||||||
image: beclab/settings:v1.3.62
|
image: beclab/settings:v1.3.63
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
command:
|
command:
|
||||||
- /bin/sh
|
- /bin/sh
|
||||||
@@ -268,7 +268,7 @@ spec:
|
|||||||
- mountPath: /www
|
- mountPath: /www
|
||||||
name: www-dir
|
name: www-dir
|
||||||
- name: studio-init
|
- name: studio-init
|
||||||
image: beclab/studio:v0.2.11
|
image: beclab/studio:v0.2.16
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
command:
|
command:
|
||||||
- /bin/sh
|
- /bin/sh
|
||||||
@@ -305,7 +305,7 @@ spec:
|
|||||||
- -c
|
- -c
|
||||||
- /etc/envoy/envoy.yaml
|
- /etc/envoy/envoy.yaml
|
||||||
- name: system-frontend
|
- name: system-frontend
|
||||||
image: eball/nginx-header-more:test-3
|
image: beclab/docker-nginx-headers-more:ubuntu-v0.1.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 81
|
- containerPort: 81
|
||||||
@@ -385,7 +385,7 @@ spec:
|
|||||||
terminationMessagePath: /dev/termination-log
|
terminationMessagePath: /dev/termination-log
|
||||||
terminationMessagePolicy: File
|
terminationMessagePolicy: File
|
||||||
- name: settings-server
|
- name: settings-server
|
||||||
image: beclab/settings-server:v0.2.22
|
image: beclab/settings-server:v0.2.23
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 3000
|
- containerPort: 3000
|
||||||
|
Before Width: | Height: | Size: 749 KiB After Width: | Height: | Size: 749 KiB |
@@ -1,2 +0,0 @@
|
|||||||
# RSS Recommend
|
|
||||||
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
# desktop
|
|
||||||
|
|
||||||
https://github.com/beclab/desktop
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
# files
|
|
||||||
|
|
||||||
https://github.com/beclab/files
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
# market-server
|
|
||||||
|
|
||||||
https://github.com/beclab/market-server
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
# Market (app store)
|
|
||||||
|
|
||||||
https://github.com/beclab/market
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
# vault
|
|
||||||
|
|
||||||
https://github.com/beclab/analytic
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
# search
|
|
||||||
|
|
||||||
https://github.com/beclab/dify-gateway
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
# devbox
|
|
||||||
Terminus App development management tools
|
|
||||||
|
|
||||||
https://github.com/beclab/devbox
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
# system-apps
|
|
||||||
|
|
||||||
dashboard control-hub
|
|
||||||
|
|
||||||
https://github.com/beclab/system-apps
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
# TermiPass
|
|
||||||
|
|
||||||
https://github.com/beclab/TermiPass
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
# wizard
|
|
||||||
|
|
||||||
https://github.com/beclab/wizard
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user