Questions tagged [jfrog-container-registry]

JFrog Container Registry is an advanced, hybrid Docker registry & Helm registry that leverages the world-class artifact repository, JFrog Artifactory, which powers the world’s most extensive workloads.

79 questions
1
vote
2 answers

docker login Succeeded into artifactory-jcr on centos 7 ,but still get ' unknown: Authentication is required',what to do?

I have launched artifactory-jcr in docker on ecs ,then try to pull images from it.at first ,I work on my laptop ,win10,everything is ok,then I move to ecs to login artifactory-jcr ,it Succeeded.but when I try to pull images ,it complains "unknown:…
1
vote
1 answer

How to use a war file from Artifactory on a Dockerfile in a GitHub repository

I need help to build the CI pipeline to build only docker-image and push it to docker hub(all are private repository. My requirement is: On the GitHub repository, I have a Docker file like the below: FROM tomcat:alpine COPY snoop.war…
1
vote
1 answer

Issues installing jfrog container registry via docker image

Im currently trying to install the Jfrog container registry via the docker image and it errors just as it reaches the ui after setup. My process of installing is as follows docker pull docker.bintray.io/jfrog/artifactory-jcr:latest docker run --name…
CaptRisky
  • 751
  • 4
  • 13
  • 25
1
vote
4 answers

docker push with local notary server returns error: x509: certificate signed by unknown authority

I have been working at setting up a docker notary on a Centos 8 machine. I followed the README.md for the notary project which tells me to use the testing certificate the project comes with by moving it to the .notary folder in my home directory. My…
1
vote
1 answer

jenkins server not taking artifactory server details

My jenkins and jfrog artifactory both are running as kubernetes containers. I am trying to integrate jenkins with artifactory. I have installed artifactory pluggin as well. while testing connection I'm getting…
1
vote
1 answer

How can I remove `artifactory_name` from JFrog's Artifactory cloud url

I have created an on-cloud JFrog account. As per my requirement, I have to remove artifactory_name from jfrog url. Currently, I have https://example.jfrog.io/example/webapp/#/home I want https://example.jfrog.io/webapp/#/home How could I remove…
1
vote
1 answer

Kubernetes Cannot pull image from Artifactory

I have created the docker registry secret using below command kubectl create secret docker-registry regcred --docker-server=https://dockerreleaselocal.jfrog.io --docker-username=user --docker-password='password' --docker-email=email Below is the…
0
votes
2 answers

Artifactory - Unable to add LDAP settings using either YAML config or API

Using YAML: I am trying to use the YAML configuration to add LDAP setting for Artifactory JCR. Tried using the helm chart version 107.63.7 (App ver.7.63.7) based on the following suggestion "Alternatively, from Artifactory version 7.63 and forward,…
Technext
  • 7,887
  • 9
  • 48
  • 76
0
votes
1 answer

Jfrog Import from one artifactory server to another artifactory instance

Failed system import: Could not merge and save new descriptor [org.jfrog.common.ExecutionFailed: Last retry failed: Failed to reload configuration: javax.crypto.BadPaddingException: Given final block not properly padded. Such issues can arise if a…
0
votes
0 answers

How to download the builds from JFrog repository using Java

I'm very new to JFrog Artifact. People are using the Jfrog artifacts repository in one of my project to download the latest build for their testing activities. Is there any way to download the build through curl or programmatically (Java (OR) JS). I…
ArrchanaMohan
  • 2,314
  • 4
  • 36
  • 84
0
votes
1 answer

howto push and promote docker image by Jenkins with Jfrog Artifactory

Currently we are using Jenkins to build and push docker images to Artifactory by docker native commands: docker build -t "my_artificatory_repo/the_image:1.0.0" . docker push "my_artificatory_repo/the_image:1.0.0" but it prevents us from using an…
0
votes
2 answers

ECR and JFROG INTEGRATION

Getting the below error while integrating jfrog with ecr repository in the option jfrog remote repository Error testing pull replication config: Unable to identify target URL as an Artifactory instance: HTTP/1.1 400 Bad Request Giving ECR url as -…
0
votes
1 answer

How to set a retention policy in JFrog Artifactory

I'm looking for a way to set retention period in JFrog Arttifactory, which will remove SNAPSHOT versions older than 100 days. If any teams need particular files need to be keep in Artifactory forever, need to exclude some path alone in that repo…
0
votes
0 answers

Artifactory Permission management for specific group members

In our current Artifactory setup we have created Repos, groups and permissions per application like below Example: For Application app-A1, we have created 2 repos(local-A1 and virtual-A1) , 2 groups(appA1-developers, appA1-contributors) and a…
0
votes
0 answers

How to use GoDaddy SSL Certificates for Docker TLS

I have generated SSL certificates from GoDaddy.com 2 It generally generates two files. one is cert (460d14e8fa8.crt) and the other is intermediate file (gd_bundle-g2-g1.crt). I input the private key to generate these files. To use this for nginx,…