Class: Rails::Gke::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/rails/gke.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



272
273
274
275
276
277
278
279
280
281
# File 'lib/rails/gke.rb', line 272

def initialize
  @project_id = nil
  @app = nil
  @network = nil
  @machine_type = nil
  @zone = nil
  @domain = nil
  @google_application_credentials = nil
  @channel = nil
end

Instance Attribute Details

#appObject

Returns the value of attribute app.



270
271
272
# File 'lib/rails/gke.rb', line 270

def app
  @app
end

#channelObject

Returns the value of attribute channel.



270
271
272
# File 'lib/rails/gke.rb', line 270

def channel
  @channel
end

#domainObject

Returns the value of attribute domain.



270
271
272
# File 'lib/rails/gke.rb', line 270

def domain
  @domain
end

#google_application_credentialsObject

Returns the value of attribute google_application_credentials.



270
271
272
# File 'lib/rails/gke.rb', line 270

def google_application_credentials
  @google_application_credentials
end

#machine_typeObject

Returns the value of attribute machine_type.



270
271
272
# File 'lib/rails/gke.rb', line 270

def machine_type
  @machine_type
end

#networkObject

Returns the value of attribute network.



270
271
272
# File 'lib/rails/gke.rb', line 270

def network
  @network
end

#project_idObject

Returns the value of attribute project_id.



270
271
272
# File 'lib/rails/gke.rb', line 270

def project_id
  @project_id
end

#zoneObject

Returns the value of attribute zone.



270
271
272
# File 'lib/rails/gke.rb', line 270

def zone
  @zone
end