This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: metallb.io/v1beta1 | |
kind: IPAddressPool | |
metadata: | |
name: first-pool | |
namespace: metallb-system | |
spec: | |
addresses: | |
- 152.16.16.240-152.16.16.250 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dir_root_path="/path-to/codeline-version-change/" | |
files=( | |
"microservice1;[email protected]:AIM/microservice1" | |
"microservice2;[email protected]:AIM/microservice2" | |
"microservice3;[email protected]:AIM/microservice3" | |
) | |
itrac_codeline="JIRA-2345" | |
old_version="3.2.2" | |
new_version="3.3.0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.apache.hc.client5.http.config.ConnectionConfig; | |
import org.apache.hc.client5.http.config.RequestConfig; | |
import org.apache.hc.client5.http.cookie.StandardCookieSpec; | |
import org.apache.hc.client5.http.impl.classic.CloseableHttpClient; | |
import org.apache.hc.client5.http.impl.classic.HttpClients; | |
import org.apache.hc.client5.http.impl.io.PoolingHttpClientConnectionManager; | |
import org.apache.hc.client5.http.impl.io.PoolingHttpClientConnectionManagerBuilder; | |
import org.apache.hc.client5.http.ssl.SSLConnectionSocketFactoryBuilder; | |
import org.apache.hc.client5.http.ssl.SSLConnectionSocketFactory; | |
import org.apache.hc.core5.http.io.SocketConfig; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import io.netty.channel.ChannelOption; | |
import io.netty.handler.timeout.ReadTimeoutHandler; | |
import io.netty.handler.timeout.WriteTimeoutHandler; | |
import org.slf4j.Logger; | |
import org.slf4j.LoggerFactory; | |
import org.springframework.beans.factory.annotation.Autowired; | |
import org.springframework.context.annotation.Bean; | |
import org.springframework.context.annotation.Configuration; | |
import org.springframework.http.HttpHeaders; | |
import org.springframework.http.MediaType; |
OlderNewer