Skip to content

Commit

Permalink
Bumped Kubernetes version to 1.13.11.
Browse files Browse the repository at this point in the history
  • Loading branch information
karok2m committed Oct 30, 2019
1 parent c9bcdff commit 46a4342
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
16 changes: 8 additions & 8 deletions deploy/src/Microsoft.Azure.IIoT.Deployment/DeploymentExecutor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@ class DeploymentExecutor : IDisposable {
private string _appServicePlanName;
private string _azureWebsiteName;
private string _networkSecurityGroupName;
private string _routTableName;
//private string _routTableName;
private string _virtualNetworkName;
private string _networkInterfaceName;
private string _publicIPAddressName;
private string _domainNameLabel;
//private string _networkInterfaceName;
//private string _publicIPAddressName;
//private string _domainNameLabel;
private string _aksClusterName;

// Resources
Expand Down Expand Up @@ -360,11 +360,11 @@ await _azureResourceManager

// Networking names
_networkSecurityGroupName = Infrastructure.NetworkMgmtClient.GenerateNetworkSecurityGroupName();
_routTableName = Infrastructure.NetworkMgmtClient.GenerateRoutTableName();
//_routTableName = Infrastructure.NetworkMgmtClient.GenerateRoutTableName();
_virtualNetworkName = Infrastructure.NetworkMgmtClient.GenerateVirtualNetworkName();
_networkInterfaceName = Infrastructure.NetworkMgmtClient.GenerateNetworkInterfaceName();
_publicIPAddressName = Infrastructure.NetworkMgmtClient.GeneratePublicIPAddressName();
_domainNameLabel = SdkContext.RandomResourceName(_applicationName + "-", 5);
//_networkInterfaceName = Infrastructure.NetworkMgmtClient.GenerateNetworkInterfaceName();
//_publicIPAddressName = Infrastructure.NetworkMgmtClient.GeneratePublicIPAddressName();
//_domainNameLabel = SdkContext.RandomResourceName(_applicationName + "-", 5);

// AKS cluster name
_aksClusterName = Infrastructure.AksMgmtClient.GenerateName();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ class AksMgmtClient : IDisposable {
public const string NETWORK_PROFILE_DNS_SERVICE_IP = "10.0.0.10";
public const string NETWORK_PROFILE_DOCKER_BRIDGE_CIDR = "172.17.0.1/16";

public const string KUBERNETES_VERSION = "1.13.11";

private readonly ContainerServiceManagementClient _containerServiceManagementClient;

public AksMgmtClient(
Expand Down Expand Up @@ -76,7 +78,7 @@ RestClient restClient
Tags = tags,

//ProvisioningState = null,
KubernetesVersion = "1.13.10",
KubernetesVersion = KUBERNETES_VERSION,
DnsPrefix = aksDnsPrefix,
//Fqdn = null,
AgentPoolProfiles = new List<ManagedClusterAgentPoolProfile> {
Expand Down

0 comments on commit 46a4342

Please sign in to comment.