問題タブ [devops-services]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
2 に答える
7620 参照

docker - 実行中の docker コンテナにインターネット アクセスを提供するにはどうすればよいですか?

こんにちは、実行中のコンテナへのインターネットアクセスを提供する正しいコマンドを教えてくれる人はいますか?

コンテナー内からインターネットにアクセスするには、docker run コマンドで --net を指定する必要があることはわかっています。

--net コマンドで実行していないコンテナー (つまり、インターネット アクセスを持たないコンテナー) にインターネット アクセスを提供したい場合はどうすればよいですか?

docker network connect NetworkName ContainerName/IDコマンドをhttps://docs.docker.com/engine/reference/commandline/network_connect/から取得しました。

ただし、上記のコマンドを実行してもインターネット アクセスが提供されないため、正しいコマンドを共有するように要求します。

注:centosコンテナでこれを試しています

0 投票する
1 に答える
71 参照

microservices - Tracking api/even changes between different microservice versions before deployment

I work devops for a fairly large company that is in process of transitioning to microservices. This is a new area for most people involved and some of the governing requests seem like bad practice to me but I don't have the expertise to convince otherwise.

The request is to generate a report before deploying that would list any new api/events (Kafka is our messaging service) in a microservice.

The path that's being recommended is for devs to follow a style guide and then scrape the source code during CI/CD pipeline to generate a report that can be compared to previous reports and identify any new apis.

This seems backwards and unsustainable but I've been unable to find another solution that would satisfy their requests. I've recommended deploying to dev first, then using a tracing tool to identify any api changes, or event subscriptions, but they insist on having the report before deploying.

I'm hoping for any advice on best practice to accomplish this.