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.glassfish.tyrus.ext.client.java8.SessionBuilder; | |
import rx.Observable; | |
import javax.websocket.Session; | |
import java.io.IOException; | |
import java.net.URI; | |
import java.net.URISyntaxException; | |
import java.util.concurrent.CountDownLatch; | |
public class WebSocketClientReactive { |
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
- task: Kubernetes@1 | |
name: 'apply' | |
inputs: | |
connectionType: 'Kubernetes Service Connection' | |
kubernetesServiceEndpoint: 'test' | |
namespace: 'default' | |
command: 'apply' | |
arguments: '-f deployment.yaml' | |
secretType: 'dockerRegistry' | |
containerRegistryType: 'Azure Container Registry' |
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
resource "azurerm_virtual_machine" "vm" { | |
... | |
zones = ["1"] | |
availability_set_id = 1 | |
... | |
} |