我在Spring-WS 1.5.9中实现了一堆Web服务.我们使用Maven来构建我们的服务,我们的服务在具有UDDI提供程序的OC4J上运行.
我们想要做的是在内部开始使用UDDi来注册我们的Web服务,以允许业务中的其他组查找和使用它们.
问题是我无法找到如何将这些全部放在一起.如何将服务部署到应用服务器时将服务注册为自己.
Spring似乎没有任何支持或注释.似乎没有maven插件.
我已经掌握了所有部分,但我如何将它们整合到自动化解决方案中?
我在 terraform 模块中有两个列表...
cidr_blocks = ["1.2.3.4/32","5.6.7.8/32"]
Run Code Online (Sandbox Code Playgroud)
我还有另一个网络 ACL 设置列表
ingress_ports = [
{
from_port = 80
to_port = 80
protocol = "tcp"
},
{
from_port = 443
to_port = 443
protocol = "tcp"
},
{
from_port = 22
to_port = 22
protocol = "tcp"
}
]
Run Code Online (Sandbox Code Playgroud)
我想将这些列表连接在一起,这样我就可以使用结果列表来创建网络 ACL。
result = [
{
cidr_block = "1.2.3.4/32"
from_port = 80
to_port = 80
protocol = "tcp"
},
{
cidr_block = "1.2.3.4/32"
from_port = 443
to_port = 443
protocol = "tcp"
},
{ …Run Code Online (Sandbox Code Playgroud) 我在更改 AWS EKS 中工作节点的名称方面没有任何运气。我无法找到任何有关节点默认命名方式的文档。
目前我的节点命名如下,例如
NAME STATUS ROLES AGE VERSION
ip-10-241-111-216.us-west-2.compute.internal Ready 44m v1.14.7-eks-1861c5
Run Code Online (Sandbox Code Playgroud)
我尝试过--hostname-override通过用户数据传入,但似乎没有任何效果。