Skip to main content

SYS.Container

class SYS.Container extends %Library.RegisteredObject

The SYS.Container class contains methods to help users run IRIS inside an OCI-compliant container. The primary use case for these methods is to be called during the process of building an IRIS image, and these methods are called during InterSystems' own image build process.

This class is designed to "fail loudly" to minimize the chance of uncaught errors in an image build process. By default, all public methods in SYS.Container will print any error to the console and terminate the entire calling process with an exit status of 1, which makes it easier to detect failures in automated build environments.

This behavior can be controlled by calling processes through environment variables, as specified in the documentation for ErrorHandler().

InterSystems builds official IRIS images using QuiesceForBundling().

Method Inventory

Methods

classmethod ChangeGatewayMgrPassword(pPasswordFile As %String, pCSPIniFile As %String = "") as %Status
Changes the Gateway Manager password in CSP.ini.

pPasswordFile Absolute path to file whose first line is our new cleartext password.

pCSPIniFile Override for path to CSP.ini file. It is usually correct to leave this blank and use the default.

classmethod ChangePassword(pPasswordFile As %String) as %Status
Change the password of all enabled accounts with changeable passwords, and a non-empty role or the special user CSPSystem. This method takes a cleartext file as input, and IRIS encrypts the contents appropriately.

pPasswordFile Absolute path to file whose first line is our new cleartext password.

classmethod EnableOSAuthentication() as %Status
Enables Operating-System-Based Authentication for this instance. This streamlines automation tasks common in containers. For more, see OS Authentication.
classmethod ErrorHandler(pSC As %Status) as %Status
Takes a %Status object as input. Returns that value or "fails loudly" by printing the error text and terminating the process, exit status 1.

These behaviors can be suppressed by setting either SYS_CONTAINER_QUIET or SYS_CONTAINER_CONTINUE_ON_ERROR to 1 in the OS environment.

Setting both makes this function a no-op.

pSC The %Status object to be interpreted.

classmethod ForcePasswordChange() as %Status
This method forces all IRIS users for this instance to change their password as part of their next login. The special user CSPSystem is excluded.
classmethod KillPassword(pUsername As %String) as %Status
Removes the IRIS password for a user. This destroys the ability to login via any authentication which requires a password. Non-password forms, such as OS-based authentication, will continue to work.

pUsername The IRIS username to be operated on.

classmethod LockDownInstance() as %Status
Performs additional securing of this instance. The instance must have been installed with GCI_prepare_install#GCI_security_initial"Locked Down" security settings. Some of these changes may be inconvenient for development or other interactive use cases, but they may be useful for running IRIS containers in production. The steps taken by this method are a suggestion. No one set of security settings will be perfect for all use cases and customers are strongly encouraged to examine their use case and make the best decisions available.
classmethod PreventFailoverMessage() as %Status
IRIS stores the hostname it is running on in the database. If IRIS later starts and discovers the hostname has changed, it will emit a warning: "System appears to have failed over from node OLD_HOSTNAME". This method removes the stored hostname, preventing that message.

Container healthchecks are based on the System Monitor state. If this failover message is not suppressed, a new container may spend its first several minutes with the System Monitor in a "warn" state, which will cause container healthchecks to fail.

classmethod PreventJournalRolloverMessage() as %Status
This method prevents messages from journal rollover in freshly-started containers. It is not guaranteed to work if the instance is not started with "nostu", as the normal shutdown process involves recording journaling metadata.

For more about "nostu", see Controlling an InterSystems IRIS Instance.

classmethod QuiesceForBundling() as %Status
This method runs all of the ObjectScript code necessary to get InterSystems IRIS into a state where it can safely be serialized into a container image.

Customers who build their own images are not required to implement this method exactly, but might find the source to be a useful starting point.

classmethod SetMonitorStateOK() as %Status
Clears severity 1 and severity 2 alerts from the System Monitor. These messages are usually transient and inappropriate to have in an instance which is being quiesced into an image.

If there have been any severity 3 alerts, this method will return an error, as severity 3 messages are fatal and indicate that this instance should not be made into an image at all.

For more information on the System Monitor and severity levels, see System Monitor Status and Resource Metrics.

classmethod SetNeverExpires(pUsername As %String) as %Status
Sets the AccountNeverExpires bit for a username. Without this, user accounts will expire in images that are more than 90 days old. For more, see Security Management.

pUsername The IRIS username to be operated on.

Inherited Members

Inherited Methods

FeedbackOpens in a new tab