gitlab 相关问题

GitLab是一个开源Git存储库管理器,具有问题跟踪和维基以及持续集成功能。使用此标记来编写与GitLab API或类似的相关的编程问题;有关一般用法的问题被视为偏离主题。



SSHgitlab拉动总是要求密码

(特别是gitlab!(github没有问题)) 我正在尝试创建一个脚本,以从主吉特拉布分支中提取一个项目,而无需询问密码。几台远程计算机具有售货亭模式PR ...

回答 4 投票 0

gitlab在克隆git存储库时提示git密码

i使用综合群安装了gitlab 7.9.1。 一切都起作用。当我做Gitlab-Rake Gitlab时:检查时,我没有任何错误。 但是,当我想在 /var /www中克隆一个存储库时,控制台提示...

回答 5 投票 0

在gitlab自我管理实例中待邮件

是否可以通过gitlab中的Linux Mail Utility将通知发送到用户本地邮箱(即/var/spool/mail $ user)? 运行实例的版本是GitLab CE版本16.3.5.

回答 1 投票 0

部署Azure数据工厂通过Gitlab

如何为GitLab的Azure数据工厂设置CI/CD管道。我们可以通过gitlab部署数据工厂。有人可以为此分享有用的链接/文档吗? tia!

回答 1 投票 0







gitlab ci部署失败:“ bash:pm2:找不到命令” gitlab-ci.ymlrun

image: node:latest stages: - build - test - deploy cache: paths: - node_modules/ - .next/ install_dependencies: stage: build script: - npm install - npm run build artifacts: paths: - node_modules/ - .next/ test-build: stage: test script: - npm run test deploy_production: stage: deploy only: - master before_script: - "which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )" - mkdir -p ~/.ssh - eval $(ssh-agent -s) - '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config' - ssh-add <(echo "$SSH_PRIVATE_KEY") - apt-get update -y - apt-get -y install rsync script: - ssh -p22 [email protected] "mkdir -p /var/www/example.com/index_tmp" - rsync -rav -e ssh --exclude='.git/' --exclude='.gitlab-ci.yml' --delete-excluded ./ [email protected]:/var/www/example.com/index_tmp - ssh -p22 [email protected] "mv /var/www/example.com/index /var/www/example.com/index_old && mv /var/www/example.com/index_tmp /var/www/example.com/index" - ssh -p22 [email protected] "rm -rf /var/www/example.com/index_old" - ssh -p22 [email protected] "pm2 restart landing-page"

回答 2 投票 0


如何从gitlab ci/cd

在GitLab的CI/CD管道中,我想从AWS Secret Manager检索该秘密,并将其分配给变量数据库_Connection。跑步者可以访问AWS SM,我想使用AWS CLI T ...

回答 1 投票 0

使用ci_job_token从gitlab 17.8.4升级到17.9.1

工作是工作的相关部分:

回答 0 投票 0


从创建React应用程序中创建NPM软件包并在Gitlab

这可能是一个愚蠢的问题,但我真的不知道发生了什么。 我已经创建了一个使用Crate React应用程序的React应用程序,并将其作为私人存储库上传到我的GitLab帐户。 (默认)...

回答 1 投票 0

如何为Docker执行人Gitlab Runner

I已将硬件连接到我的GitLab Runner(使用Docker Executor)。 GitLab Runner是PC。我用它来运行与硬件有关的自动测试。 这些测试涉及发送和接收...

回答 1 投票 0


最新问题
© www.soinside.com 2019 - 2025. All rights reserved.