回复:cf-dev Digest, Vol 4, Issue 44


Zhi Xie
 

也是愧疚月哦好*

发自我的小米手机
在 2015-7-14 下午4:10,cf-dev-request@...写道:

>
> Send cf-dev mailing list submissions to
cf-dev@...

To subscribe or unsubscribe via the World Wide Web, visit
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev
or, via email, send a message with subject or body 'help' to
cf-dev-request@...

You can reach the person managing the list at
cf-dev-owner@...

When replying, please edit your Subject line so it is more specific
than "Re: Contents of cf-dev digest..."

Today's Topics:

   1. Re: Composite Application Deployer (David Vydra)
   2. Re: CF Lattice support for private registries (Artifactory
      Docker registry). (dharmi)
   3. Re: CF Lattice support for private registries (Artifactory
      Docker registry). (Gwenn Etourneau)
   4. CF client library (nota-ja)
   5. Re: CF client library (Gwenn Etourneau)
   6. Re: CF client library (Noburou TANIGUCHI)
   7. Re: CF client library (Gwenn Etourneau)

----------------------------------------------------------------------

Message: 1
Date: Mon, 13 Jul 2015 21:29:09 -0700
From: David Vydra <david@...>
To:cf-dev@...
Subject: Re: [cf-dev] Composite Application Deployer
Message-ID:
<CAD6xd1tMD=yXPLvHpoF4xn3+kmPvUgd+yyzHKei6Pt7X7ok9JA@...>
Content-Type: text/plain; charset="iso-8859-1"

James,

Thanks for the detailed answer. We started treating Jenkins views as the
representation of a particular space and each view contains many of jobs
for that push one app to that space.

autopilot plugin is definitely a move in the right direction, but we have a
richer deployment story --- we run smoke tests before we switch the routes.
We are implementing lower-level primitives that support this level of
granularity.

We are currently using Java, but will probably switch to Go if our approach
works (and we find time to learn Go)

Thanks,
David

>

--
http://www.linkedin.com/in/dvydra
http://www.testdriven.com
http://twitter.com/vydra
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.cloudfoundry.org/pipermail/cf-dev/attachments/20150713/f45c58a9/attachment-0001.html>

------------------------------

Message: 2
Date: Mon, 13 Jul 2015 22:21:41 -0700 (PDT)
From: dharmi <dharmi@...>
To:cf-dev@...
Subject: Re: [cf-dev] CF Lattice support for private registries
(Artifactory Docker registry).
Message-ID: <1436851301059-710.post@...>
Content-Type: text/plain; charset=us-ascii

I was running the application over VPN and dns was indeed the rootcause.
Thanks for pointing.

This is the error I see when I try to create an app from a Docker image
hosted on Artifactory from Lattice CLI.  Artifactory logs indicate that I am
not authenticated when submitting the below request, even with  .dockercfg
configured.

$ ltc create myappdocker-local.corp.myorg.com/ubuntu_bb:1.0.0
*Error fetching image metadata: HTTP code: 403*

The same works fine when I run *docker pull
docker-local.corp.myorg.com/ubuntu_bb:1.0.0*.
Searching a bit, I found  this issue
<https://github.com/cloudfoundry-incubator/lattice/issues/35>  , not sure if
its related. 

Thanks in advance.

--
View this message in context:http://cf-dev.70369.x6.nabble.com/cf-dev-CF-Lattice-support-for-private-registries-Artifactory-Docker-registry-tp693p710.html
Sent from the CF Dev mailing list archive atNabble.com.

------------------------------

Message: 3
Date: Tue, 14 Jul 2015 14:49:36 +0900
From: Gwenn Etourneau <getourneau@...>
To: "Discussions about Cloud Foundry projects and the system overall."
<cf-dev@...>
Subject: Re: [cf-dev] CF Lattice support for private registries
(Artifactory Docker registry).
Message-ID:
<CAPJeHfmRYodogbgkKEx3fJm=BQNxXJV9da3HPYRtViH0hYXG0w@...>
Content-Type: text/plain; charset="utf-8"

No is not related, so you private registry have no user or password ?

On Tue, Jul 14, 2015 at 2:21 PM, dharmi <dharmi@...> wrote:

> I was running the application over VPN and dns was indeed the rootcause.
> Thanks for pointing.
>
> This is the error I see when I try to create an app from a Docker image
> hosted on Artifactory from Lattice CLI.  Artifactory logs indicate that I
> am
> not authenticated when submitting the below request, even with  .dockercfg
> configured.
>
> $ ltc create myappdocker-local.corp.myorg.com/ubuntu_bb:1.0.0
> *Error fetching image metadata: HTTP code: 403*
>
> The same works fine when I run *docker pull
>docker-local.corp.myorg.com/ubuntu_bb:1.0.0*.
> Searching a bit, I found  this issue
> <https://github.com/cloudfoundry-incubator/lattice/issues/35>  , not sure
> if
> its related.
>
> Thanks in advance.
>
>
>
> --
> View this message in context:
>http://cf-dev.70369.x6.nabble.com/cf-dev-CF-Lattice-support-for-private-registries-Artifactory-Docker-registry-tp693p710.html
> Sent from the CF Dev mailing list archive atNabble.com.
> _______________________________________________
> cf-dev mailing list
>cf-dev@...
>https://lists.cloudfoundry.org/mailman/listinfo/cf-dev
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.cloudfoundry.org/pipermail/cf-dev/attachments/20150714/c5fecb79/attachment-0001.html>

------------------------------

Message: 4
Date: Mon, 13 Jul 2015 22:46:57 -0700 (PDT)
From: nota-ja <dev@...>
To:cf-dev@...
Subject: [cf-dev] CF client library
Message-ID: <1436852817834-712.post@...>
Content-Type: text/plain; charset=us-ascii

Hi,

# I have posted this message once, but there does not appear the post, so I
repost this.
# If you find duplicated messages, please ignore the first one.

We're currently planning to write a Web dashboard for a Cloud Foundry
deployment.

Our old dashboard uses  cfoundry
<https://github.com/cloudfoundry-attic/cfoundry>  , but it is now outdated
and abandoned.

So I want to know how do other people create their Web dashboard for the
latest Cloud Foundry environment.

I think there are a few options right now:

(A) Use " cf <https://github.com/cloudfoundry/cli>   curl" as an external
command
(B) Write a dashboard in Golang using  cf cli
<https://github.com/cloudfoundry/cli>   as a library
(C) Use  cf cli <https://github.com/cloudfoundry/cli>   RPC server like cli
plug-ins do
(D) Write a dashboard in Java on the top of  cf-java-client
<https://github.com/cloudfoundry/cf-java-client>   library

Please let me know which option you are using, or any other way to build a
dashboard, if you are able to disclose it.

Thanks in advance.


--
View this message in context:http://cf-dev.70369.x6.nabble.com/CF-client-library-tp712.html
Sent from the CF Dev mailing list archive atNabble.com.

------------------------------

Message: 5
Date: Tue, 14 Jul 2015 15:09:02 +0900
From: Gwenn Etourneau <getourneau@...>
To: "Discussions about Cloud Foundry projects and the system overall."
<cf-dev@...>
Subject: Re: [cf-dev] CF client library
Message-ID:
<CAPJeHfmH7RP_KF6_ZLUZPhp-cBxvXRbCNjxxt6juCPQpdQ6O2A@...>
Content-Type: text/plain; charset="utf-8"

humm,
Most simple is to call the Cloudcontroller API....
like we do herehttps://github.com/cloudfoundry-community/go-cfclient

On Tue, Jul 14, 2015 at 2:46 PM, nota-ja <dev@...> wrote:

> Hi,
>
> # I have posted this message once, but there does not appear the post, so I
> repost this.
> # If you find duplicated messages, please ignore the first one.
>
> We're currently planning to write a Web dashboard for a Cloud Foundry
> deployment.
>
> Our old dashboard uses  cfoundry
> <https://github.com/cloudfoundry-attic/cfoundry>  , but it is now outdated
> and abandoned.
>
> So I want to know how do other people create their Web dashboard for the
> latest Cloud Foundry environment.
>
> I think there are a few options right now:
>
> (A) Use " cf <https://github.com/cloudfoundry/cli>   curl" as an external
> command
> (B) Write a dashboard in Golang using  cf cli
> <https://github.com/cloudfoundry/cli>   as a library
> (C) Use  cf cli <https://github.com/cloudfoundry/cli>   RPC server like
> cli
> plug-ins do
> (D) Write a dashboard in Java on the top of  cf-java-client
> <https://github.com/cloudfoundry/cf-java-client>   library
>
> Please let me know which option you are using, or any other way to build a
> dashboard, if you are able to disclose it.
>
> Thanks in advance.
>
>
>
>
> --
> View this message in context:
>http://cf-dev.70369.x6.nabble.com/CF-client-library-tp712.html
> Sent from the CF Dev mailing list archive atNabble.com.
> _______________________________________________
> cf-dev mailing list
>cf-dev@...
>https://lists.cloudfoundry.org/mailman/listinfo/cf-dev
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.cloudfoundry.org/pipermail/cf-dev/attachments/20150714/5689a242/attachment-0001.html>

------------------------------

Message: 6
Date: Tue, 14 Jul 2015 00:56:49 -0700 (PDT)
From: Noburou TANIGUCHI <dev@...>
To:cf-dev@...
Subject: Re: [cf-dev] CF client library
Message-ID: <1436860609811-714.post@...>
Content-Type: text/plain; charset=us-ascii

Thanks for your quick reply, Gwenn.
I haven't knownhttps://github.com/cloudfoundry-community/go-cfclient.
I'm glad to know a new CF client library. It seems very easy to use.

Besides studying it by myself, I want to ask some questions about it.

* What's the difference (pros / cons) between the official cli and
go-cfclient?
* How can I know how up-to-date it is with the latest Cloud Controller API?

(It might be better to ask these questions as the repo's issue...)

--
View this message in context:http://cf-dev.70369.x6.nabble.com/CF-client-library-tp712p714.html
Sent from the CF Dev mailing list archive atNabble.com.

------------------------------

Message: 7
Date: Tue, 14 Jul 2015 17:10:24 +0900
From: Gwenn Etourneau <getourneau@...>
To: "Discussions about Cloud Foundry projects and the system overall."
<cf-dev@...>
Subject: Re: [cf-dev] CF client library
Message-ID:
<CAPJeHfmUDf2=E8NzWpTH2+ukYiQAPTM1w6cHgSjo12Var2a8cA@...>
Content-Type: text/plain; charset="utf-8"

Yes you can find the version based on the cf-release version here
http://apidocs.cloudfoundry.org/212/

For the pro/cons I don t really know, I just contributed to the go-cfclient
so I don't really know the "official" client.

Depends on your needs..

Btw are you based in Japan ?
I am in Japan  :)

On Tue, Jul 14, 2015 at 4:56 PM, Noburou TANIGUCHI <dev@...> wrote:

> Thanks for your quick reply, Gwenn.
> I haven't knownhttps://github.com/cloudfoundry-community/go-cfclient.
> I'm glad to know a new CF client library. It seems very easy to use.
>
> Besides studying it by myself, I want to ask some questions about it.
>
> * What's the difference (pros / cons) between the official cli and
> go-cfclient?
> * How can I know how up-to-date it is with the latest Cloud Controller API?
>
> (It might be better to ask these questions as the repo's issue...)
>
>
>
> --
> View this message in context:
>http://cf-dev.70369.x6.nabble.com/CF-client-library-tp712p714.html
> Sent from the CF Dev mailing list archive atNabble.com.
> _______________________________________________
> cf-dev mailing list
>cf-dev@...
>https://lists.cloudfoundry.org/mailman/listinfo/cf-dev
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.cloudfoundry.org/pipermail/cf-dev/attachments/20150714/be7314dc/attachment.html>

------------------------------

_______________________________________________
cf-dev mailing list
cf-dev@...
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev

End of cf-dev Digest, Vol 4, Issue 44
*************************************